Files
s390-tools/rust/pv/Cargo.toml
Marc Hartmayer e6c17461a3 rust: Provide and use a workspace.lints table
Provide and use a `workspace.lints` table. This makes it easier to
maintain and to enforce one coding style. Let's explicitly disable the
`missing_docs` linting rule for tests.

MSRV for the lints table is 1.74 [1]

[1] https://doc.rust-lang.org/cargo/reference/workspaces.html#the-lints-table

Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Reviewed-by: Steffen Eiden <seiden@linux.ibm.com>
Acked-by: Finn Callies <fcallies@linux.ibm.com>
Signed-off-by: Steffen Eiden <seiden@linux.ibm.com>
2024-11-22 17:20:00 +01:00

32 lines
865 B
TOML

[package]
name = "s390_pv"
version = "0.10.0"
edition.workspace = true
license.workspace = true
rust-version.workspace = true
description = "s390-tools IBM Secure Execution utilities"
keywords = ["s390", "s390x", "IBM_Secure_Execution"]
repository = "https://github.com/ibm-s390-linux/s390-tools/tree/master/rust"
categories = ["hardware-support"]
readme = "README.md"
[lints]
workspace = true
[dependencies]
byteorder = "1.3"
curl = "0.4.44"
enum_dispatch = "0.3.13"
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", package = "s390_pv_core", version = "0.10.0" }
[dev-dependencies]
serde_test = "1.0.139"