From bc269ddb38b1a8da01b8da04ad8bab6e4051534d Mon Sep 17 00:00:00 2001 From: Steffen Eiden Date: Thu, 5 Dec 2024 10:28:56 +0100 Subject: [PATCH] rust: Update rust crates version to 0.11.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Steffen Eiden Signed-off-by: Jan Höppner --- rust/Cargo.lock | 16 ++++++++-------- rust/cpacfinfo/Cargo.toml | 2 +- rust/pv/Cargo.toml | 4 ++-- rust/pv_core/Cargo.toml | 2 +- rust/pvapconfig/Cargo.toml | 2 +- rust/pvattest/Cargo.toml | 2 +- rust/pvimg/Cargo.toml | 2 +- rust/pvsecret/Cargo.toml | 2 +- rust/utils/Cargo.toml | 2 +- 9 files changed, 17 insertions(+), 17 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 8620114f..08905e6f 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -193,7 +193,7 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "cpacfinfo" -version = "0.1.0" +version = "0.11.0" dependencies = [ "anyhow", "cc", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "pvapconfig" -version = "0.10.0" +version = "0.11.0" dependencies = [ "clap", "clap_complete", @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "pvattest" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "base64", @@ -640,7 +640,7 @@ dependencies = [ [[package]] name = "pvimg" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "clap", @@ -660,7 +660,7 @@ dependencies = [ [[package]] name = "pvsecret" -version = "0.10.0" +version = "0.11.0" dependencies = [ "anyhow", "clap", @@ -808,7 +808,7 @@ checksum = "f91339c0467de62360649f8d3e185ca8de4224ff281f66000de5eb2a77a79041" [[package]] name = "s390_pv" -version = "0.10.0" +version = "0.11.0" dependencies = [ "byteorder", "curl", @@ -826,7 +826,7 @@ dependencies = [ [[package]] name = "s390_pv_core" -version = "0.10.0" +version = "0.11.0" dependencies = [ "byteorder", "lazy_static", @@ -1019,7 +1019,7 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] name = "utils" -version = "0.10.0" +version = "0.11.0" dependencies = [ "clap", "libc", diff --git a/rust/cpacfinfo/Cargo.toml b/rust/cpacfinfo/Cargo.toml index 36165605..ff470de2 100644 --- a/rust/cpacfinfo/Cargo.toml +++ b/rust/cpacfinfo/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cpacfinfo" -version = "0.1.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/pv/Cargo.toml b/rust/pv/Cargo.toml index 66b254fc..5c3dd103 100644 --- a/rust/pv/Cargo.toml +++ b/rust/pv/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s390_pv" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true @@ -25,7 +25,7 @@ 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" } +pv_core = { path = "../pv_core", package = "s390_pv_core", version = "0.11.0" } [dev-dependencies] serde_test = "1.0.139" diff --git a/rust/pv_core/Cargo.toml b/rust/pv_core/Cargo.toml index 5311cc80..3d03cefe 100644 --- a/rust/pv_core/Cargo.toml +++ b/rust/pv_core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "s390_pv_core" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/pvapconfig/Cargo.toml b/rust/pvapconfig/Cargo.toml index 561d12f9..4fca7071 100644 --- a/rust/pvapconfig/Cargo.toml +++ b/rust/pvapconfig/Cargo.toml @@ -2,7 +2,7 @@ name = "pvapconfig" description = "A tool to configure the AP resources inside a SE guest based on UV secrets and an AP config file." authors = ["Harald Freudenberger "] -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/pvattest/Cargo.toml b/rust/pvattest/Cargo.toml index 7524f605..0fa7e9a3 100644 --- a/rust/pvattest/Cargo.toml +++ b/rust/pvattest/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pvattest" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/pvimg/Cargo.toml b/rust/pvimg/Cargo.toml index c2684323..7fd54fea 100644 --- a/rust/pvimg/Cargo.toml +++ b/rust/pvimg/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pvimg" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/pvsecret/Cargo.toml b/rust/pvsecret/Cargo.toml index 0227d979..27245c40 100644 --- a/rust/pvsecret/Cargo.toml +++ b/rust/pvsecret/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pvsecret" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true rust-version.workspace = true diff --git a/rust/utils/Cargo.toml b/rust/utils/Cargo.toml index 15182edf..7b7bc870 100644 --- a/rust/utils/Cargo.toml +++ b/rust/utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "utils" -version = "0.10.0" +version = "0.11.0" edition.workspace = true license.workspace = true