From 85b65db14eb2e5492befebaf427153da77c8b9f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roman=20Hodul=C3=A1k?= Date: Thu, 18 Jul 2024 12:15:18 +0200 Subject: [PATCH] feat(trie): add empty `reth-trie-db` crate (#9585) --- Cargo.toml | 1 + crates/trie/db/Cargo.toml | 12 ++++++++++++ crates/trie/db/src/lib.rs | 1 + 3 files changed, 14 insertions(+) create mode 100644 crates/trie/db/Cargo.toml create mode 100644 crates/trie/db/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 17cf1a20f..8fdfa16b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/crates/trie/db/Cargo.toml b/crates/trie/db/Cargo.toml new file mode 100644 index 000000000..edfd0a278 --- /dev/null +++ b/crates/trie/db/Cargo.toml @@ -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 diff --git a/crates/trie/db/src/lib.rs b/crates/trie/db/src/lib.rs new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/crates/trie/db/src/lib.rs @@ -0,0 +1 @@ +