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 dependencies and bump risc0 to 1.1.2 #274

Merged
merged 3 commits into from
Oct 3, 2024
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
344 changes: 175 additions & 169 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@ resolver = "2"
members = ["build", "contracts", "ffi", "steel"]

[workspace.package]
version = "1.1.1"
version = "1.1.2"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0-ethereum/"

[workspace.dependencies]
# Intra-workspace dependencies
risc0-build-ethereum = { version = "1.1.1", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.1", default-features = false, path = "contracts" }
risc0-steel = { version = "0.13.1", default-features = false, path = "steel" }
risc0-forge-ffi = { version = "1.1.1", default-features = false, path = "ffi" }
risc0-build-ethereum = { version = "1.1.2", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.2", default-features = false, path = "contracts" }
risc0-steel = { version = "0.13.2", default-features = false, path = "steel" }
risc0-forge-ffi = { version = "1.1.2", default-features = false, path = "ffi" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.1", default-features = false }
risc0-zkp = { version = "1.1.1", default-features = false }
risc0-zkvm = { version = "1.1.1", default-features = false }
risc0-build = { version = "1.1.2", default-features = false }
risc0-zkp = { version = "1.1.2", default-features = false }
risc0-zkvm = { version = "1.1.2", default-features = false }

# Alloy guest dependencies
alloy-consensus = { version = "0.3" }
alloy-primitives = { version = "0.8" }
alloy-primitives = { version = "=0.8.3" }
alloy-rlp = { version = "0.3.8" }
alloy-rlp-derive = { version = "0.3.8" }
alloy-sol-types = { version = "0.8" }
alloy-sol-types = { version = "=0.8.3" }

# Alloy host dependencies
alloy = { version = "=0.3.3" }
Expand All @@ -48,7 +48,7 @@ clap = { version = "4.5", features = ["derive", "env"] }
log = "0.4"
nybbles = { version = "0.2.1" }
once_cell = "1.19"
revm = { version = "14.0", default-features = false, features = ["std"] }
revm = { version = "=14.0.2", default-features = false, features = ["std"] }
serde = "1.0"
serde_json = "1.0"
sha2 = { version = "0.10" }
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/groth16/RiscZeroGroth16Verifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract RiscZeroGroth16Verifier is IRiscZeroVerifier, Groth16Verifier {
using SafeCast for uint256;

/// Semantic version of the the RISC Zero system of which this contract is part.
string public constant VERSION = "1.1.1";
string public constant VERSION = "1.1.2";

/// @notice Control root hash binding the set of circuits in the RISC Zero system.
/// @dev This value controls what set of recursion programs (e.g. lift, join, resolve), and
Expand Down
Loading
Loading