Files
s390-tools/rust/pvattest/Cargo.toml
Marc Hartmayer f83af8e076 rust: Generate shell (e.g. bash) completion scripts via build.rs for all tools
It might be handy to have shell completion support for the Rust PV
tools.

Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
2024-05-27 16:54:25 +02:00

25 lines
729 B
TOML

[package]
name = "pvattest"
version = "0.10.0"
edition.workspace = true
license.workspace = true
[dependencies]
anyhow = { version = "1.0.70", features = ["std"] }
byteorder = "1.3"
clap = { version ="4.1", features = ["derive", "wrap_help"]}
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
serde_yaml = "0.9"
serde = { version = "1.0.139", features = ["derive"]}
zerocopy = { version="0.7", features = ["derive"] }
pv = { path = "../pv", package = "s390_pv" }
utils = { path = "../utils" }
[build-dependencies]
clap = { version ="4.1", features = ["derive", "wrap_help"]}
clap_complete = "4.1"
log = { version = "0.4", features = ["std", "release_max_level_debug"] }
utils = { path = "../utils" }