diff --git a/Cargo.lock b/Cargo.lock index ab66b3b568c..c3853525e21 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6896,7 +6896,6 @@ dependencies = [ "alloy-genesis", "alloy-rlp", "arbitrary", - "async-stream", "bytes", "derive_more", "proptest", @@ -6904,13 +6903,9 @@ dependencies = [ "rand 0.8.5", "reth-chainspec", "reth-codecs-derive", - "reth-net-common", "reth-primitives", - "reth-tracing", "serde", - "test-fuzz", "thiserror", - "tokio-util", ] [[package]] diff --git a/crates/net/eth-wire-types/Cargo.toml b/crates/net/eth-wire-types/Cargo.toml index d7766043e97..9e6c8ec3cf4 100644 --- a/crates/net/eth-wire-types/Cargo.toml +++ b/crates/net/eth-wire-types/Cargo.toml @@ -30,18 +30,12 @@ proptest = { workspace = true, optional = true } proptest-derive = { workspace = true, optional = true } [dev-dependencies] -reth-net-common.workspace = true reth-primitives = { workspace = true, features = ["arbitrary"] } -reth-tracing.workspace = true - -test-fuzz.workspace = true -tokio-util = { workspace = true, features = ["io", "codec"] } -rand.workspace = true arbitrary = { workspace = true, features = ["derive"] } proptest.workspace = true proptest-derive.workspace = true -async-stream.workspace = true +rand.workspace = true [features] default = ["serde"]