diff --git a/Cargo.toml b/Cargo.toml index e55c73f43..056a3e0d2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -391,6 +391,7 @@ derive_more = "0.99.17" fdlimit = "0.3.0" eyre = "0.6" generic-array = "0.14" +linked_hash_set = "0.1" tracing = "0.1.0" tracing-appender = "0.2" thiserror = "1.0" diff --git a/crates/blockchain-tree/Cargo.toml b/crates/blockchain-tree/Cargo.toml index 647969396..16f84c659 100644 --- a/crates/blockchain-tree/Cargo.toml +++ b/crates/blockchain-tree/Cargo.toml @@ -39,7 +39,7 @@ metrics.workspace = true # misc aquamarine.workspace = true -linked_hash_set = "0.1.4" +linked_hash_set.workspace = true [dev-dependencies] reth-db = { workspace = true, features = ["test-utils"] } diff --git a/crates/net/dns/Cargo.toml b/crates/net/dns/Cargo.toml index aacba3f88..5b4b75c2f 100644 --- a/crates/net/dns/Cargo.toml +++ b/crates/net/dns/Cargo.toml @@ -31,13 +31,13 @@ trust-dns-resolver = "0.23" # misc data-encoding = "2" -linked_hash_set = "0.1" +linked_hash_set.workspace = true schnellru.workspace = true thiserror.workspace = true tracing.workspace = true parking_lot.workspace = true serde = { workspace = true, optional = true } -serde_with = { version = "3.3.0", optional = true } +serde_with = { workspace = true, optional = true } [dev-dependencies] reth-primitives.workspace = true