mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
* Get rid of Mockito * create certs with AKID * simplify things in the `create_certs.py` script Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com> Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
23 lines
576 B
TOML
23 lines
576 B
TOML
[package]
|
|
name = "pv"
|
|
version = "1.0.0"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
byteorder = "1.3"
|
|
clap = { version ="4", features = ["derive", "wrap_help"] }
|
|
curl = "0.4.7"
|
|
log = { version = "0.4.6", features = ["std", "release_max_level_debug"] }
|
|
openssl = "0.10.49"
|
|
serde = { version = "1.0.139", features = ["derive"] }
|
|
thiserror = "1.0.33"
|
|
utils = {path = "../utils"}
|
|
zerocopy = { version="0.7", features = ["derive"] }
|
|
|
|
openssl_extensions = { path = "openssl_extensions" }
|
|
pv_core = { path = "../pv_core" }
|
|
|
|
[dev-dependencies]
|
|
serde_test = "1"
|