From 14b4be822e787c5ea300d57e1b67bbb0a394e886 Mon Sep 17 00:00:00 2001 From: Mohsen Zohrevandi Date: Thu, 5 Dec 2024 16:19:00 -0800 Subject: [PATCH] Add missing version for pcs and dcap-artifact-retrieval dependencies --- intel-sgx/dcap-artifact-retrieval/Cargo.toml | 4 ++-- intel-sgx/pcs/Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/intel-sgx/dcap-artifact-retrieval/Cargo.toml b/intel-sgx/dcap-artifact-retrieval/Cargo.toml index 9f6e4bc2..637a8045 100644 --- a/intel-sgx/dcap-artifact-retrieval/Cargo.toml +++ b/intel-sgx/dcap-artifact-retrieval/Cargo.toml @@ -15,7 +15,7 @@ mbedtls = { version = "0.12.3", features = [ "std", ], default-features = false } num_enum = { version = "0.7", features = ["complex-expressions"] } -pcs = { path = "../pcs" } +pcs = { version = "0.1.0", path = "../pcs" } percent-encoding = "2.1.0" pkix = "0.2.0" quick-error = "1.1.0" @@ -30,7 +30,7 @@ default = ["clap", "reqwest"] [dev-dependencies] yasna = { version = "0.3", features = ["num-bigint", "bit-vec"] } -pcs = { path = "../pcs", features = ["verify"] } +pcs = { version = "0.1.0", path = "../pcs", features = ["verify"] } [build-dependencies] mbedtls = { version = "0.12.3", features = ["ssl", "x509"] } diff --git a/intel-sgx/pcs/Cargo.toml b/intel-sgx/pcs/Cargo.toml index 9f66d5ab..033d1e7d 100644 --- a/intel-sgx/pcs/Cargo.toml +++ b/intel-sgx/pcs/Cargo.toml @@ -8,8 +8,8 @@ description = "Datastructures related to the Intel Provisioning Certification Se # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -dcap-ql = { path = "../dcap-ql", default-features = false } -sgx-isa = { path = "../sgx-isa", default-features = true } +dcap-ql = { version = "0.4.0", path = "../dcap-ql", default-features = false } +sgx-isa = { version = "0.4.1", path = "../sgx-isa", default-features = true } pkix = "0.2.0" yasna = { version = "0.3", features = ["num-bigint", "bit-vec"] } rustc-serialize = "0.3"