Files
s390-tools/rust/pvinfo/Cargo.toml
Annu Sharma ce82010827 Add tool to display Secure Execution system information
Add 'pvinfo' a tool to display the information of enabled flags, and
print the debug information in Yaml and Human format.

Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Serena Santosh <serena@linux.ibm.com>
Signed-off-by: Ann Mariya Jojo <annjojo@linux.ibm.com>
Signed-off-by: Annu Sharma <annu09@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
2025-12-10 14:41:43 +01:00

26 lines
534 B
TOML

[package]
name = "pvinfo"
version = "0.12.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = "1"
clap = { version = "4.5", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_yaml = "0.9.21"
pv_core = { path = "../pv_core", package = "s390_pv_core" }
utils = { path = "../utils" }
[dev-dependencies]
tempfile = "3.15.0"
[build-dependencies]
clap = { version = "4.5", features = ["derive"] }
clap_complete = "4.5"