Files
s390-tools/rust/pvimg/Cargo.toml
Marc Hartmayer 87966251c4 pvimg: info: Improve JSON output
Improve JSON output and implement deserialization.

Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Signed-off-by: Marc Hartmayer <marc@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2026-02-16 11:48:59 +01:00

38 lines
969 B
TOML

[package]
name = "pvimg"
version = "0.12.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
[lints]
workspace = true
[dependencies]
anyhow = { version = "1.0.95", features = ["std"] }
base64 = "0.22.1"
clap = { version ="4.5", features = ["derive", "wrap_help"]}
deku = "0.18"
deku_derive = "0.18"
enum_dispatch = "0.3.13"
log = { version = "0.4.25", features = ["std", "release_max_level_debug"] }
openssl = "0.10.70"
serde = { version = "1.0.217", features = ["derive"]}
serde_json = "1.0"
thiserror = "2.0.11"
pv = { path = "../pv", package = "s390_pv" }
utils = { path = "../utils" }
[build-dependencies]
anyhow = { version = "1.0.95", features = ["std"] }
clap = { version ="4.5", features = ["derive", "wrap_help"]}
clap_complete = "4.5"
log = { version = "0.4.25", features = ["std", "release_max_level_debug"] }
pv = { path = "../pv", package = "s390_pv" }
utils = { path = "../utils" }
[dev-dependencies]
proptest = "1.6"