Skip to content

Commit 75feba8

Browse files
committed
bump risc0 to v1.2.4
Signed-off-by: Jun Kimura <jun.kimura@datachain.jp>
1 parent 58ba9c5 commit 75feba8

File tree

6 files changed

+26
-26
lines changed

6 files changed

+26
-26
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
curl -L https://risczero.com/install | bash
3131
echo "$HOME/.risc0/bin" >> $GITHUB_PATH
3232
- name: Install RISC Zero toolchain
33-
run: rzup install rust && rzup install cargo-risczero 1.2.2
33+
run: rzup install rust && rzup install cargo-risczero 1.2.4
3434
- run: . "/home/runner/.bashrc" && ZKDCAP_RISC0_BUILD=1 cargo build -r --manifest-path=./zkvm/risc0/Cargo.toml
3535
- run: git diff --exit-code
3636

zkvm/risc0/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ edition = "2021"
77
methods = ["guest"]
88

99
[dependencies]
10-
risc0-zkvm = { version = "=1.2.2", default-features = false, optional = true }
10+
risc0-zkvm = { version = "=1.2.4", default-features = false, optional = true }
1111

1212
[build-dependencies]
13-
risc0-build = { version = "=1.2.2", features = ["docker", "unstable"] }
14-
risc0-binfmt = { version = "=1.2.2", default-features = false }
13+
risc0-build = { version = "=1.2.4", features = ["docker", "unstable"] }
14+
risc0-binfmt = { version = "=1.2.4", default-features = false }
1515

1616
[dev-dependencies]
17-
risc0-zkvm = { version = "=1.2.2", default-features = false, features = ["prove"] }
17+
risc0-zkvm = { version = "=1.2.4", default-features = false, features = ["prove"] }
1818
hex = { version = "0.4", default-features = false, features = ["alloc"] }
1919
dcap-quote-verifier = { path = "../../crates/quote-verifier" }
2020

4 Bytes
Binary file not shown.

zkvm/risc0/guest/Cargo.lock

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

zkvm/risc0/guest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "dcap_quote_verifier"
88
path = "src/bin/main.rs"
99

1010
[dependencies]
11-
risc0-zkvm = { version = "=1.2.2", default-features = false, features = ["std", "unstable"] }
11+
risc0-zkvm = { version = "=1.2.4", default-features = false, features = ["std", "unstable"] }
1212
dcap-quote-verifier = { path = "../../../crates/quote-verifier" }
1313

1414
[profile.release]

zkvm/risc0/src/methods.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

2-
pub const DCAP_QUOTE_VERIFIER_ID: [u32; 8] = [3570155330, 2926070775, 3575196693, 2710964045, 2636563641, 2942910557, 2074353913, 2043399925];
3-
pub const DCAP_QUOTE_VERIFIER_ID_STR: &str = "423fccd4f74b68ae152c19d54d0796a1b9c4269d5d4069aff920a47bf5cecb79";
2+
pub const DCAP_QUOTE_VERIFIER_ID: [u32; 8] = [2354812792, 752117600, 1571109129, 2757371367, 428495466, 2124350151, 343129816, 1519734798];
3+
pub const DCAP_QUOTE_VERIFIER_ID_STR: &str = "78975b8c6067d42c0939a55de7255aa46a528a19c7029f7ed8be73140e50955a";
44
pub const DCAP_QUOTE_VERIFIER_ELF: &[u8] = include_bytes!("../artifacts/dcap-quote-verifier");

0 commit comments

Comments
 (0)