mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
2ed2c608ab
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 https://gitlab.com/kvm-unit-tests/kvm-unit-tests/-/commit/dc4f7106f363b27f57549d5d039b4804bbb6e67f 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>
37 lines
949 B
TOML
37 lines
949 B
TOML
[package]
|
|
name = "pvimg"
|
|
version = "0.10.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.70", features = ["std"] }
|
|
clap = { version ="4.1", features = ["derive", "wrap_help"]}
|
|
deku = "0.18"
|
|
deku_derive = "0.18"
|
|
enum_dispatch = "0.3.13"
|
|
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
|
|
openssl = "0.10.66"
|
|
serde = { version = "1.0.139", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
thiserror = "1.0.33"
|
|
|
|
pv = { path = "../pv", package = "s390_pv" }
|
|
utils = { path = "../utils" }
|
|
|
|
[build-dependencies]
|
|
anyhow = { version = "1.0.70", features = ["std"] }
|
|
clap = { version ="4.1", features = ["derive", "wrap_help"]}
|
|
clap_complete = "4.5"
|
|
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
|
|
|
|
pv = { path = "../pv", package = "s390_pv" }
|
|
utils = { path = "../utils" }
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.3"
|