Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to 1.2.1 #139

Merged
merged 1 commit into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@ log.txt
*.bin
*.txt
*.fake
*.out
*.out
cache/
64 changes: 32 additions & 32 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ opt-level = 3

# RISC Zero
[workspace.dependencies.bonsai-sdk]
version = "1.2.1-rc.1"
version = "1.2.1"
features = ["non_blocking"]

[workspace.dependencies.risc0-build]
version = "1.2.1-rc.1"
version = "1.2.1"
features = ["unstable"]

[workspace.dependencies.risc0-zkvm]
version = "1.2.1-rc.1"
version = "1.2.1"
features = ["unstable"]

# External
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ By using reth to run the block execution process within the zkVM, we obtain a ZK

## Status

Zeth uses version `1.2.1-rc.1` of the RISC Zero zkVM and version 1.1.0 of reth (backed by revm 14.0.3), but its other components are not audited for use in production.
Zeth uses version `1.2.1` of the RISC Zero zkVM and version 1.1.0 of reth (backed by revm 14.0.3), but its other components are not audited for use in production.

## Prerequisites
1. [rust](https://www.rust-lang.org/tools/install)
Expand Down
44 changes: 22 additions & 22 deletions guests/reth-ethereum/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions guests/reth-ethereum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ codegen-units = 1
opt-level = 3

[dependencies.risc0-zkvm]
version = "1.2.1-rc.1"
version = "1.2.1"
features = ["unstable"]

[dependencies.risc0-zkvm-platform]
version = "1.2.1-rc.1"
version = "1.2.1"
features = ["sys-getenv"]

[dependencies.zeth-core]
Expand Down
Loading
Loading