perf: add ETL to init_from_state_dump (#8022)

This commit is contained in:
joshieDo
2024-05-02 13:02:51 +01:00
committed by GitHub
parent 7428573d7c
commit aba48a5505
9 changed files with 264 additions and 148 deletions

View File

@ -16,6 +16,7 @@ reth-codecs-derive = { path = "./derive", default-features = false }
# eth
alloy-eips = { workspace = true, optional = true }
alloy-genesis = { workspace = true, optional = true }
alloy-primitives.workspace = true
# misc
@ -36,5 +37,5 @@ proptest-derive.workspace = true
[features]
default = ["std", "alloy"]
std = ["alloy-primitives/std", "bytes/std"]
alloy = ["dep:alloy-eips", "dep:modular-bitfield"]
alloy = ["dep:alloy-eips", "dep:alloy-genesis", "dep:modular-bitfield"]
optimism = ["reth-codecs-derive/optimism"]