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

@ -18,14 +18,14 @@ reth-primitives-traits.workspace = true
reth-zstd-compressors = { workspace = true, optional = true }
# ethereum
alloy-eips.workspace = true
alloy-eips = { workspace = true, features = ["k256"] }
alloy-primitives.workspace = true
alloy-network = { workspace = true, optional = true }
alloy-consensus = { workspace = true, features = ["serde"] }
alloy-serde = { workspace = true, optional = true }
alloy-rlp.workspace = true
alloy-rpc-types-eth = { workspace = true, optional = true }
revm-primitives.workspace = true
revm-context.workspace = true
# misc
arbitrary = { workspace = true, optional = true, features = ["derive"] }
@ -65,9 +65,9 @@ std = [
"alloy-eips/std",
"derive_more/std",
"secp256k1?/std",
"revm-primitives/std",
"alloy-serde?/std",
"alloy-rpc-types-eth?/std",
"revm-context/std",
]
reth-codec = [
"std",
@ -84,7 +84,6 @@ arbitrary = [
"reth-codecs?/arbitrary",
"reth-primitives-traits/arbitrary",
"alloy-eips/arbitrary",
"revm-primitives/arbitrary",
"alloy-serde?/arbitrary",
"alloy-rpc-types-eth?/arbitrary",
]