feat(trie): add empty reth-trie-db crate (#9585)

This commit is contained in:
Roman Hodulák
2024-07-18 12:15:18 +02:00
committed by GitHub
parent 6aabf13bd2
commit 85b65db14e
3 changed files with 14 additions and 0 deletions

View File

@ -371,6 +371,7 @@ reth-tracing = { path = "crates/tracing" }
reth-transaction-pool = { path = "crates/transaction-pool" }
reth-trie = { path = "crates/trie/trie" }
reth-trie-common = { path = "crates/trie/common" }
reth-trie-db = { path = "crates/trie/db" }
reth-trie-parallel = { path = "crates/trie/parallel" }
# revm

12
crates/trie/db/Cargo.toml Normal file
View File

@ -0,0 +1,12 @@
[package]
name = "reth-trie-db"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Database integration with merkle trie implementation"
[lints]
workspace = true

View File

@ -0,0 +1 @@