mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Define and set the minimal supported Rust version (MSRV) to 1.75.0. This is the (current) minimal supported version over all supported distros that use rust in s390-tools. Reviewed-by: Jan Höppner <hoeppner@linux.ibm.com> Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
26 lines
759 B
TOML
26 lines
759 B
TOML
[package]
|
|
name = "pvattest"
|
|
version = "0.10.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.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" }
|