diff --git a/Cargo.lock b/Cargo.lock index 61485c16..971061e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1984,7 +1984,7 @@ checksum = "e8566979429cf69b49a5c740c60791108e86440e8be149bbea4fe54d2c32d6e2" [[package]] name = "dcap-collaterals" version = "0.1.0" -source = "git+https://github.com/datachainlab/zkdcap?rev=9d6fab9b7ca5621e58958515228a616f37f89a6d#9d6fab9b7ca5621e58958515228a616f37f89a6d" +source = "git+https://github.com/datachainlab/zkdcap?rev=v0.0.4#v0.0.4" dependencies = [ "anyhow", "chrono", @@ -1999,7 +1999,7 @@ dependencies = [ [[package]] name = "dcap-pcs" version = "0.1.0" -source = "git+https://github.com/datachainlab/zkdcap?rev=9d6fab9b7ca5621e58958515228a616f37f89a6d#9d6fab9b7ca5621e58958515228a616f37f89a6d" +source = "git+https://github.com/datachainlab/zkdcap?rev=v0.0.4#v0.0.4" dependencies = [ "anyhow", "dcap-quote-verifier", @@ -2014,7 +2014,7 @@ dependencies = [ [[package]] name = "dcap-quote-verifier" version = "0.1.0" -source = "git+https://github.com/datachainlab/zkdcap?rev=9d6fab9b7ca5621e58958515228a616f37f89a6d#9d6fab9b7ca5621e58958515228a616f37f89a6d" +source = "git+https://github.com/datachainlab/zkdcap?rev=v0.0.4#v0.0.4" dependencies = [ "alloy-sol-types", "anyhow", @@ -2031,7 +2031,7 @@ dependencies = [ [[package]] name = "dcap-types" version = "0.1.0" -source = "git+https://github.com/datachainlab/zkdcap?rev=9d6fab9b7ca5621e58958515228a616f37f89a6d#9d6fab9b7ca5621e58958515228a616f37f89a6d" +source = "git+https://github.com/datachainlab/zkdcap?rev=v0.0.4#v0.0.4" dependencies = [ "anyhow", "chrono", @@ -9973,7 +9973,7 @@ dependencies = [ [[package]] name = "zkdcap-risc0" version = "0.1.0" -source = "git+https://github.com/datachainlab/zkdcap?rev=9d6fab9b7ca5621e58958515228a616f37f89a6d#9d6fab9b7ca5621e58958515228a616f37f89a6d" +source = "git+https://github.com/datachainlab/zkdcap?rev=v0.0.4#v0.0.4" dependencies = [ "risc0-binfmt", "risc0-build", diff --git a/app/Cargo.toml b/app/Cargo.toml index 52a4679c..c7bcf03e 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -27,7 +27,7 @@ crypto = { path = "../modules/crypto" } keymanager = { path = "../modules/keymanager" } remote-attestation = { path = "../modules/remote-attestation" } attestation-report = { path = "../modules/attestation-report", features = ["dcap-quote-parser"] } -zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } +zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } [build-dependencies] git2 = { version = "0.20", default-features = false } diff --git a/modules/attestation-report/Cargo.toml b/modules/attestation-report/Cargo.toml index 4037cf1d..aa02dab0 100644 --- a/modules/attestation-report/Cargo.toml +++ b/modules/attestation-report/Cargo.toml @@ -18,7 +18,7 @@ pem = { version = "2.0", default-features = false } webpki = { version = "0.22", features = ["alloc"] } anyhow = { version = "1", default-features = false } -dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d", optional = true } +dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4", optional = true } [dev-dependencies] tokio = { version = "1.0", default-features = false, features = ["macros"] } diff --git a/modules/lcp-client/Cargo.toml b/modules/lcp-client/Cargo.toml index 94232658..8db072e7 100644 --- a/modules/lcp-client/Cargo.toml +++ b/modules/lcp-client/Cargo.toml @@ -11,7 +11,7 @@ flex-error = { version = "0.4.4", default-features = false } tiny-keccak = { version = "2.0" } hex-literal = { version = "0.4.1" } alloy-sol-types = { version = "0.8", default-features = false } -dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } +dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } attestation-report = { path = "../attestation-report", default-features = false } remote-attestation = { path = "../remote-attestation", default-features = false } diff --git a/modules/remote-attestation/Cargo.toml b/modules/remote-attestation/Cargo.toml index 579609cc..71e28d0d 100644 --- a/modules/remote-attestation/Cargo.toml +++ b/modules/remote-attestation/Cargo.toml @@ -27,9 +27,9 @@ serde_json = { version = "1.0", features = ["preserve_order"] } rsa = { version = "0.9.2", features = ["pem"], optional = true } chrono = { version = "0.4.38", features = ["now"], optional = true } -dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } -dcap-pcs = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } -dcap-collaterals = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } +dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } +dcap-pcs = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } +dcap-collaterals = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } lcp-types = { path = "../types" } crypto = { path = "../crypto", default-features = false } diff --git a/tests/integration/Cargo.toml b/tests/integration/Cargo.toml index b78fb463..e5fa55d4 100644 --- a/tests/integration/Cargo.toml +++ b/tests/integration/Cargo.toml @@ -35,7 +35,7 @@ attestation-report = { path = "../../modules/attestation-report" } keymanager = { path = "../../modules/keymanager" } remote-attestation = { path = "../../modules/remote-attestation" } -zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "9d6fab9b7ca5621e58958515228a616f37f89a6d" } +zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.4" } [features] default = []