chore: use crates directly in eth-wire (#12554)

This commit is contained in:
Matthias Seitz
2024-11-14 19:03:15 +01:00
committed by GitHub
parent a7bb1d1fa3
commit 870ffae909
8 changed files with 15 additions and 10 deletions

View File

@ -14,12 +14,12 @@ workspace = true
[dependencies]
# reth
reth-codecs.workspace = true
reth-primitives.workspace = true
reth-primitives-traits.workspace = true
reth-ecies.workspace = true
alloy-rlp = { workspace = true, features = ["derive"] }
reth-eth-wire-types.workspace = true
reth-network-peers.workspace = true
reth-ethereum-forks.workspace = true
# ethereum
alloy-primitives.workspace = true
@ -45,6 +45,7 @@ arbitrary = { workspace = true, features = ["derive"], optional = true }
[dev-dependencies]
reth-primitives = { workspace = true, features = ["arbitrary"] }
reth-primitives-traits = { workspace = true, features = ["arbitrary"] }
reth-eth-wire-types = { workspace = true, features = ["arbitrary"] }
reth-tracing.workspace = true
@ -67,14 +68,15 @@ alloy-eips.workspace = true
[features]
arbitrary = [
"reth-primitives/arbitrary",
"reth-eth-wire-types/arbitrary",
"dep:arbitrary",
"alloy-eips/arbitrary",
"alloy-primitives/arbitrary",
"reth-codecs/arbitrary",
"alloy-chains/arbitrary",
"reth-primitives-traits/arbitrary"
"reth-primitives-traits/arbitrary",
"reth-ethereum-forks/arbitrary",
"reth-primitives/arbitrary"
]
serde = [
"dep:serde",