mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
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>
26 lines
534 B
TOML
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"
|