mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
The new Rust port of genprotimg will have the name 'pvimg' as it has
more functionalities than the original genprotimg tool. As preparation
add a Secure Execution header library and an example how to use it. The
example can be used by the KVM-Unit-Tests for creating the Secure
Execution headers needed by the tests [1].
[1] See dc4f7106f3
more information how to use.
Acked-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
32 lines
542 B
TOML
32 lines
542 B
TOML
[workspace]
|
|
members = [
|
|
"cpacfinfo",
|
|
"pv",
|
|
"pv_core",
|
|
"pvapconfig",
|
|
"pvattest",
|
|
"pvimg",
|
|
"pvsecret",
|
|
"utils",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
rust-version = "1.75.0"
|
|
|
|
[workspace.lints.rust]
|
|
missing_docs = { level = "deny", priority = 1 }
|
|
missing_debug_implementations = "warn"
|
|
non_ascii_idents = "warn"
|
|
nonstandard-style = "warn"
|
|
trivial_numeric_casts = "warn"
|
|
unstable_features = "warn"
|
|
unused = "warn"
|
|
unused_import_braces = "warn"
|
|
unused_qualifications = "warn"
|
|
|
|
[profile.release]
|
|
lto = true
|