Skip to content

Commit 4cd846c

Browse files
committed
bump zkdcap to v0.0.3
Signed-off-by: Jun Kimura <jun.kimura@datachain.jp>
1 parent 928a3ee commit 4cd846c

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ test:
198198

199199
.PHONY: integration-test
200200
integration-test: $(Signed_RustEnclave_Name) bin/gaiad
201-
@PATH=${PATH}:$(CURDIR)/bin cargo test $(CARGO_TARGET) --package integration-test $(APP_CARGO_FEATURES)
201+
cargo test $(CARGO_TARGET) --package integration-test $(APP_CARGO_FEATURES)
202202

203203
.PHONY: test-nodes
204204
test-setup-nodes: bin/gaiad

app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ crypto = { path = "../modules/crypto" }
2727
keymanager = { path = "../modules/keymanager" }
2828
remote-attestation = { path = "../modules/remote-attestation" }
2929
attestation-report = { path = "../modules/attestation-report", features = ["dcap-quote-parser"] }
30-
zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
30+
zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
3131

3232
[build-dependencies]
3333
git2 = { version = "0.20", default-features = false }

modules/attestation-report/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pem = { version = "2.0", default-features = false }
1818
webpki = { version = "0.22", features = ["alloc"] }
1919
anyhow = { version = "1", default-features = false }
2020

21-
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53", optional = true }
21+
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3", optional = true }
2222

2323
[dev-dependencies]
2424
tokio = { version = "1.0", default-features = false, features = ["macros"] }

modules/lcp-client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ flex-error = { version = "0.4.4", default-features = false }
1111
tiny-keccak = { version = "2.0" }
1212
hex-literal = { version = "0.4.1" }
1313
alloy-sol-types = { version = "0.8", default-features = false }
14-
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
14+
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
1515

1616
attestation-report = { path = "../attestation-report", default-features = false }
1717
remote-attestation = { path = "../remote-attestation", default-features = false }

modules/remote-attestation/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ serde_json = { version = "1.0", features = ["preserve_order"] }
2727
rsa = { version = "0.9.2", features = ["pem"], optional = true }
2828
chrono = { version = "0.4.38", features = ["now"], optional = true }
2929

30-
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
31-
dcap-pcs = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
32-
dcap-collaterals = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
30+
dcap-quote-verifier = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
31+
dcap-pcs = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
32+
dcap-collaterals = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
3333

3434
lcp-types = { path = "../types" }
3535
crypto = { path = "../crypto", default-features = false }

tests/integration/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ attestation-report = { path = "../../modules/attestation-report" }
3535
keymanager = { path = "../../modules/keymanager" }
3636
remote-attestation = { path = "../../modules/remote-attestation" }
3737

38-
zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "49a2e9360db289c637732a60460f3d7d47f9fb53" }
38+
zkdcap-risc0 = { git = "https://github.com/datachainlab/zkdcap", rev = "v0.0.3" }
3939

4040
[features]
4141
default = []

0 commit comments

Comments
 (0)