Skip to content
This repository was archived by the owner on Feb 6, 2025. It is now read-only.

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: state cache for execution
Browse files Browse the repository at this point in the history
forcodedancing committed Sep 29, 2024
1 parent dd637d6 commit 15473b3
Showing 12 changed files with 510 additions and 19 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
@@ -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
@@ -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
@@ -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 15473b3

Please sign in to comment.