mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
chore: use crates directly in eth-wire (#12554)
This commit is contained in:
@ -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",
|
||||
|
||||
Reference in New Issue
Block a user