Files
s390-tools/rust/pvsecret/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

22 lines
605 B
TOML

[package]
name = "pvsecret"
version = "0.10.0"
edition.workspace = true
license.workspace = true
[dependencies]
anyhow = { version = "1.0.70", features = ["std"] }
clap = { version ="4.1", features = ["derive", "wrap_help"]}
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
serde_yaml = "0.9"
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" }