refactor: move executors to revm crate (#2076)

This commit is contained in:
Bjerg
2023-04-03 17:01:36 +02:00
committed by GitHub
parent 7da8323ac2
commit e4a428e29b
20 changed files with 67 additions and 52 deletions

View File

@ -13,5 +13,14 @@ reth-interfaces = { path = "../interfaces" }
reth-provider = { path = "../storage/provider" }
reth-revm-primitives = { path = "./revm-primitives" }
reth-revm-inspectors = { path = "./revm-inspectors" }
reth-executor = { path = "../executor" }
reth-consensus-common = { path = "../consensus/common" }
# revm
revm = { version = "3.0.0" }
# common
tracing = "0.1.37"
[dev-dependencies]
reth-rlp = { path = "../rlp" }