Skip to content

Commit 56afdf7

Browse files
committed
feat: implement in-memory storage backend
1 parent 3e311c7 commit 56afdf7

File tree

6 files changed

+1680
-2
lines changed

6 files changed

+1680
-2
lines changed

Cargo.lock

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/exex/external-proofs/Cargo.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ description = "ExEx to save and serve trie nodes to make proofs faster."
1111
[lints]
1212
workspace = true
1313

14+
[features]
15+
test-utils = []
16+
1417
[dependencies]
1518
reth-exex.workspace = true
1619

@@ -31,3 +34,11 @@ async-trait.workspace = true
3134
eyre.workspace = true
3235
futures-util.workspace = true
3336
serde.workspace = true
37+
thiserror.workspace = true
38+
tokio.workspace = true
39+
40+
# dev dependencies
41+
[dev-dependencies]
42+
tokio = { workspace = true, features = ["test-util", "rt-multi-thread", "macros"] }
43+
test-case.workspace = true
44+
futures.workspace = true

0 commit comments

Comments
 (0)