Skip to content

Commit

Permalink
feat: state cache for execution
Browse files Browse the repository at this point in the history
  • Loading branch information
forcodedancing committed Sep 29, 2024
1 parent dd637d6 commit 7030558
Show file tree
Hide file tree
Showing 11 changed files with 510 additions and 18 deletions.
16 changes: 16 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 10 additions & 4 deletions crates/chain-state/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ reth-metrics.workspace = true
reth-primitives.workspace = true
reth-storage-api.workspace = true
reth-trie.workspace = true
reth-revm.workspace = true

# alloy
alloy-primitives.workspace = true
Expand All @@ -31,6 +32,10 @@ tokio-stream = { workspace = true, features = ["sync"] }
# tracing
tracing.workspace = true

# cache
lazy_static = "1.5.0"
quick_cache = "0.6.6"

# misc
auto_impl.workspace = true
derive_more.workspace = true
Expand All @@ -49,11 +54,12 @@ alloy-signer.workspace = true
alloy-signer-local.workspace = true
rand.workspace = true
revm.workspace = true
reth-provider = { workspace = true, features = ["test-utils"] }

[features]
test-utils = [
"alloy-signer",
"alloy-signer-local",
"rand",
"revm"
"alloy-signer",
"alloy-signer-local",
"rand",
"revm"
]
Loading

0 comments on commit 7030558

Please sign in to comment.