feat: alloy-evm and new revm integration (#14021)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
Co-authored-by: rakita <rakita@users.noreply.github.com>
This commit is contained in:
Arsenii Kulikov
2025-02-17 23:59:23 +04:00
committed by GitHub
parent bb6dec7ceb
commit 336c3d1fac
142 changed files with 1841 additions and 1929 deletions

View File

@ -23,6 +23,8 @@ alloy-primitives.workspace = true
# revm
revm.workspace = true
revm-database.workspace = true
revm-inspector.workspace = true
[dev-dependencies]
reth-trie.workspace = true
@ -33,13 +35,15 @@ alloy-consensus.workspace = true
[features]
default = ["std"]
std = [
"alloy-consensus/std",
"alloy-primitives/std",
"reth-ethereum-forks/std",
"reth-primitives-traits/std",
"reth-storage-errors/std",
"alloy-primitives/std",
"revm/std",
"alloy-consensus/std",
"reth-ethereum-forks/std",
"revm-database/std",
"revm-inspector/std",
"reth-storage-api/std",
"reth-storage-errors/std",
]
witness = ["dep:reth-trie"]
test-utils = [
@ -54,5 +58,7 @@ serde = [
"alloy-consensus/serde",
"reth-trie?/serde",
"reth-ethereum-forks/serde",
"revm-database/serde",
"reth-primitives-traits/serde",
"revm-inspector/serde",
]