Files
s390-tools/rust/pv/Cargo.toml
Marc Hartmayer 43858063ca rust: Upgrade 'thiserror' to '2.0.6'
Since there have been breaking changes, let's fix them. Fortunately,
there was only one problem to fix.

Command line used:

  $ cargo upgrade --incompatible -p 'thiserror'

Acked-by: Jan Höppner <hoeppner@linux.ibm.com>
Signed-off-by: Marc Hartmayer <mhartmay@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2024-12-20 13:01:15 +01:00

32 lines
866 B
TOML

[package]
name = "s390_pv"
version = "0.11.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.5"
curl = "0.4.47"
enum_dispatch = "0.3.13"
foreign-types = "0.3.2"
log = { version = "0.4.22", features = ["std", "release_max_level_debug"] }
openssl = "0.10.68"
openssl-sys = "0.9.104"
serde = { version = "1.0.216", features = ["derive"] }
thiserror = "2.0.6"
zerocopy = { version="0.7", features = ["derive"] }
pv_core = { path = "../pv_core", package = "s390_pv_core", version = "0.11.0" }
[dev-dependencies]
serde_test = "1.0.177"