feat(trie): sparse trie (#11741)

This commit is contained in:
Roman Krasiuk
2024-10-15 15:53:43 +02:00
committed by GitHub
parent c4d7b59183
commit a235f7214c
8 changed files with 1055 additions and 1 deletions

View File

@ -10,3 +10,35 @@ description = "Sparse MPT implementation"
[lints]
workspace = true
[dependencies]
# reth
reth-primitives.workspace = true
reth-trie-common.workspace = true
reth-trie.workspace = true
# alloy
alloy-primitives.workspace = true
alloy-rlp.workspace = true
# tracing
tracing.workspace = true
# misc
thiserror.workspace = true
rayon.workspace = true
smallvec = { workspace = true, features = ["const_new"] }
[dev-dependencies]
reth-primitives = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-trie-common = { workspace = true, features = ["test-utils", "arbitrary"] }
reth-trie = { workspace = true, features = ["test-utils"] }
assert_matches.workspace = true
itertools.workspace = true
proptest.workspace = true
criterion.workspace = true
[[bench]]
name = "root"
harness = false