feat: add in memory state container (#9574)

This commit is contained in:
Federico Gimenez
2024-07-17 18:37:27 +02:00
committed by GitHub
parent 281ecf9627
commit 0994d36c4e
4 changed files with 261 additions and 69 deletions

View File

@ -59,6 +59,7 @@ tracing.workspace = true
# optional deps for test-utils
reth-stages = { workspace = true, optional = true }
reth-tracing = { workspace = true, optional = true }
rand = { workspace = true, optional = true }
[dev-dependencies]
# reth
@ -73,11 +74,13 @@ reth-stages = { workspace = true, features = ["test-utils"] }
reth-tracing.workspace = true
assert_matches.workspace = true
rand.workspace = true
[features]
test-utils = [
"reth-db/test-utils",
"reth-network-p2p/test-utils",
"reth-stages/test-utils",
"reth-tracing"
"reth-tracing",
"rand"
]