mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Prepare pv & pv_core crates to be released on crates.io: * Remove any unused API to stay flexible * Remove utils dependency * Move cli, tmpfile and version utilities to local utils crate * Use the new utilities in the pv tools * Rename Secret into Confidential to avoid confusion of Secret (now Confidential) and AddSecret requests. * Move the uvsecret module out of the request module and change the name to secret. * Cleanup dependencies * Precise and correct minimal dependency versions * Inline `Aes256Key::from_digest` The cleanup ensures that the code also compiles with the dependencies resolved to their minimal versions using: $ cargo +nightly -Z minimal-versions update $ cargo build For more information refer to this blog post: https://users.rust-lang.org/t/psa-please-specify-precise-dependency-versions-in-cargo-toml/71277/8 Signed-off-by: Marc Hartmayer <mhartmay@de.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
20 lines
508 B
TOML
20 lines
508 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"
|
|
zerocopy = {version = "0.7", features = ["derive"]}
|
|
serde = { version = "1.0.139", features = ["derive"]}
|
|
byteorder = "1.3"
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0.139"
|
|
lazy_static = "1.1"
|