mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
crates.io does not like sub-crates in a crate. Unpack the openssl-extensions sub-crate into a (private) module. While at it, fix some styling issues. Reviewed-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
22 lines
489 B
TOML
22 lines
489 B
TOML
[package]
|
|
name = "pv"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
byteorder = "1.3"
|
|
curl = "0.4.44"
|
|
foreign-types = "0.3.1"
|
|
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
|
|
openssl = "0.10.57"
|
|
openssl-sys = "0.9.92"
|
|
serde = { version = "1.0.139", features = ["derive"] }
|
|
thiserror = "1.0.33"
|
|
zerocopy = { version="0.7", features = ["derive"] }
|
|
|
|
pv_core = { path = "../pv_core" }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1.0.139"
|