chore(revm): freeze revm, add Optimism Canyon fork (#5519)

This commit is contained in:
rakita
2023-11-21 20:58:41 +03:00
committed by GitHub
parent 6904194204
commit afdb0a3148
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@@ -6607,7 +6607,7 @@ dependencies = [
[[package]]
name = "revm"
version = "3.5.0"
source = "git+https://github.com/bluealloy/revm?rev=1609e07c68048909ad1682c98cf2b9baa76310b5#1609e07c68048909ad1682c98cf2b9baa76310b5"
source = "git+https://github.com/bluealloy/revm?branch=reth_freeze#74643d37fc6231d558868ccc8b97400506e10906"
dependencies = [
"auto_impl",
"revm-interpreter",
@@ -6617,7 +6617,7 @@ dependencies = [
[[package]]
name = "revm-interpreter"
version = "1.3.0"
source = "git+https://github.com/bluealloy/revm?rev=1609e07c68048909ad1682c98cf2b9baa76310b5#1609e07c68048909ad1682c98cf2b9baa76310b5"
source = "git+https://github.com/bluealloy/revm?branch=reth_freeze#74643d37fc6231d558868ccc8b97400506e10906"
dependencies = [
"revm-primitives",
]
@@ -6625,7 +6625,7 @@ dependencies = [
[[package]]
name = "revm-precompile"
version = "2.2.0"
source = "git+https://github.com/bluealloy/revm?rev=1609e07c68048909ad1682c98cf2b9baa76310b5#1609e07c68048909ad1682c98cf2b9baa76310b5"
source = "git+https://github.com/bluealloy/revm?branch=reth_freeze#74643d37fc6231d558868ccc8b97400506e10906"
dependencies = [
"aurora-engine-modexp",
"c-kzg",
@@ -6641,7 +6641,7 @@ dependencies = [
[[package]]
name = "revm-primitives"
version = "1.3.0"
source = "git+https://github.com/bluealloy/revm?rev=1609e07c68048909ad1682c98cf2b9baa76310b5#1609e07c68048909ad1682c98cf2b9baa76310b5"
source = "git+https://github.com/bluealloy/revm?branch=reth_freeze#74643d37fc6231d558868ccc8b97400506e10906"
dependencies = [
"alloy-primitives",
"alloy-rlp",

View File

@@ -135,8 +135,8 @@ reth-transaction-pool = { path = "crates/transaction-pool" }
reth-trie = { path = "crates/trie" }
# revm
revm = { git = "https://github.com/bluealloy/revm", rev = "1609e07c68048909ad1682c98cf2b9baa76310b5" }
revm-primitives = { git = "https://github.com/bluealloy/revm", rev = "1609e07c68048909ad1682c98cf2b9baa76310b5" }
revm = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" }
revm-primitives = { git = "https://github.com/bluealloy/revm", branch = "reth_freeze" }
# eth
alloy-primitives = "0.4"