diff --git a/Cargo.lock b/Cargo.lock index e533a104c65..083825c1c40 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -9614,6 +9614,7 @@ dependencies = [ "eyre", "reth-codecs", "reth-db", + "reth-db-api", "reth-primitives-traits", "reth-trie", "serde", diff --git a/crates/optimism/trie/Cargo.toml b/crates/optimism/trie/Cargo.toml index 3649158d771..6f828b35367 100644 --- a/crates/optimism/trie/Cargo.toml +++ b/crates/optimism/trie/Cargo.toml @@ -39,4 +39,5 @@ reth-codecs = { workspace = true, features = ["test-utils"] } tokio = { workspace = true, features = ["test-util", "rt-multi-thread", "macros"] } test-case.workspace = true reth-db = { workspace = true, features = ["test-utils"] } +reth-db-api = { workspace = true, features = ["test-utils"] } reth-trie = { workspace = true, features = ["test-utils"] }