mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Since there have been breaking changes, let's fix them. Fortunately, there was only one problem to fix. Command line used: $ cargo upgrade --incompatible -p 'thiserror' Acked-by: Jan Höppner <hoeppner@linux.ibm.com> Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
37 lines
950 B
TOML
37 lines
950 B
TOML
[package]
|
|
name = "pvimg"
|
|
version = "0.11.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1.0.94", features = ["std"] }
|
|
clap = { version ="4.5", features = ["derive", "wrap_help"]}
|
|
deku = "0.18"
|
|
deku_derive = "0.18"
|
|
enum_dispatch = "0.3.13"
|
|
log = { version = "0.4.22", features = ["std", "release_max_level_debug"] }
|
|
openssl = "0.10.68"
|
|
serde = { version = "1.0.216", features = ["derive"]}
|
|
serde_json = "1.0"
|
|
thiserror = "2.0.6"
|
|
|
|
pv = { path = "../pv", package = "s390_pv" }
|
|
utils = { path = "../utils" }
|
|
|
|
[build-dependencies]
|
|
anyhow = { version = "1.0.94", features = ["std"] }
|
|
clap = { version ="4.5", features = ["derive", "wrap_help"]}
|
|
clap_complete = "4.5"
|
|
log = { version = "0.4.22", features = ["std", "release_max_level_debug"] }
|
|
|
|
pv = { path = "../pv", package = "s390_pv" }
|
|
utils = { path = "../utils" }
|
|
|
|
[dev-dependencies]
|
|
proptest = "1.5"
|