Skip to content

Commit 29ef158

Browse files
authored
chore: fix workspace crate revisions (#75)
az-{snp,tdx}-vtpm crates were not using an updated az-cvm-vtpm package. Signed-off-by: Magnus Kulke <[email protected]>
1 parent df59c50 commit 29ef158

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

az-cvm-vtpm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "az-cvm-vtpm"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
edition = "2021"
55
repository = "https://github.com/kinvolk/azure-cvm-tooling/"
66
license = "MIT"

az-cvm-vtpm/az-snp-vtpm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "az-snp-vtpm"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
edition = "2021"
55
repository = "https://github.com/kinvolk/azure-cvm-tooling/"
66
license = "MIT"
@@ -17,7 +17,7 @@ path = "src/main.rs"
1717
required-features = ["attester", "verifier"]
1818

1919
[dependencies]
20-
az-cvm-vtpm = { path = "..", version = "0.7.1" }
20+
az-cvm-vtpm = { path = "..", version = "0.7.4" }
2121
bincode.workspace = true
2222
clap.workspace = true
2323
openssl = { workspace = true, optional = true }

az-cvm-vtpm/az-snp-vtpm/src/report.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33

44
#[cfg(feature = "verifier")]
55
use super::certs::Vcek;
6-
use az_cvm_vtpm::hcl::{self, HclReport, SNP_REPORT_SIZE};
6+
#[cfg(feature = "verifier")]
7+
use az_cvm_vtpm::hcl::SNP_REPORT_SIZE;
8+
use az_cvm_vtpm::hcl::{self, HclReport};
79
use az_cvm_vtpm::vtpm;
810
#[cfg(feature = "verifier")]
911
use openssl::{ecdsa::EcdsaSig, sha::Sha384};

az-cvm-vtpm/az-tdx-vtpm/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "az-tdx-vtpm"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
edition = "2021"
55
repository = "https://github.com/kinvolk/azure-cvm-tooling/"
66
license = "MIT"
@@ -16,7 +16,7 @@ name = "tdx-vtpm"
1616
path = "src/main.rs"
1717

1818
[dependencies]
19-
az-cvm-vtpm = { path = "..", version = "0.7.1" }
19+
az-cvm-vtpm = { path = "..", version = "0.7.4" }
2020
base64-url = "3.0.0"
2121
bincode.workspace = true
2222
serde.workspace = true

0 commit comments

Comments
 (0)