mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Recent changes makes it reasonable to update the version string of pv and pv_base to 1.0.0. Recent changes introduced some non-backwards compatible changes, like move some Error definition from pv to the new pv_core crate. Also, the pv crates seem to be in a good shape to be considered released. Therefore, move up the Semver to 1.0.0. See also: https://doc.rust-lang.org/cargo/reference/specifying-dependencies.html NOTE: As these crates are not published to `crates.io` as of now, the version number is meaningless, as cargo will not pull them from anywhere and just use the files provided by this repository. Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
22 lines
583 B
TOML
22 lines
583 B
TOML
[package]
|
|
name = "pv_core"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
libc = "0.2.49"
|
|
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
|
|
thiserror = "1.0.33"
|
|
utils = {path = "../utils"}
|
|
zerocopy = {version = "0.7", features = ["derive"]}
|
|
serde = { version = "1.0.139", features = ["derive"]}
|
|
byteorder = "1.3"
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1"
|
|
mockito = {version = "1", default-features = false }
|
|
lazy_static = "1.1"
|