Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
Merge pull request 0xPolygonZero#34 from topos-protocol/bump
Browse files Browse the repository at this point in the history
Bump versions and fix broken compilation
  • Loading branch information
Nashtare authored Aug 11, 2023
2 parents bf4de16 + 468af37 commit 91bf6ca
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 65 deletions.
87 changes: 37 additions & 50 deletions Cargo.lock

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

11 changes: 0 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,3 @@ members = [
[profile.release]
lto = "fat"
codegen-units = 1

# TODO: Remove once `plonky_evm` gets a version on `crates.io`...
# Since we can only use `plonky2_evm` using a git revision (which also causes us to use `plonky2` with
# a reivison), any deps that also use `plonky2`/`plonky2_evm` are very often going to be using imcompatable
# revisions. We can solve this for now by using a `[patch]` section to force all deps to use a specific version,
[patch."https://github.com/mir-protocol/plonky2.git"]
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git?rev=c0abefdaf55f45fe820502688e442a5b958d1929" }
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git?rev=c0abefdaf55f45fe820502688e442a5b958d1929" }

[patch.crates-io]
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git?rev=c0abefdaf55f45fe820502688e442a5b958d1929" }
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ anyhow = { version = "1.0.71", features = ["backtrace"] }
ethereum-types = "0.14.1"
eth_trie_utils = "0.6.0"
flexi_logger = { version = "0.25.4", features = ["async"] }
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "c0abefdaf55f45fe820502688e442a5b958d1929" }
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "6f98fd762885e9b5343af5f0e3f0c9c90e8cf3ab" }
serde = {version = "1.0.163", features = ["derive"] }
revm = { version = "3.3.0", features = ["serde"] }
ruint = { version = "1.8.0", features = ["primitive-types"] }
2 changes: 1 addition & 1 deletion eth_test_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
[dependencies]
common = { path = "../common" }
eth_trie_utils = "0.6.0"
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "c0abefdaf55f45fe820502688e442a5b958d1929" }
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "6f98fd762885e9b5343af5f0e3f0c9c90e8cf3ab" }

anyhow = { version = "1.0.71", features = ["backtrace"] }
clap = {version = "4.2.7", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions evm_test_runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ edition = "2021"

[dependencies]
common = { path = "../common" }
plonky2 = { git = "https://github.com/mir-protocol/plonky2.git", rev = "c0abefdaf55f45fe820502688e442a5b958d1929" }
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "c0abefdaf55f45fe820502688e442a5b958d1929" }
plonky2 = "0.1.4" # NOTE: Make sure that this version matches the one used by plonky2_evm when bumping to newer versions.
plonky2_evm = { git = "https://github.com/mir-protocol/plonky2.git", rev = "6f98fd762885e9b5343af5f0e3f0c9c90e8cf3ab" }

anyhow = { version = "1.0", features = ["backtrace"] }
askama = "0.12.0"
Expand Down

0 comments on commit 91bf6ca

Please sign in to comment.