chore: move Header and SealedHeader to reth-primitives-traits (#8831)

This commit is contained in:
joshieDo
2024-06-14 16:43:57 +02:00
committed by GitHub
parent ca574edbc8
commit 217ff958cc
14 changed files with 841 additions and 789 deletions

View File

@ -14,9 +14,15 @@ workspace = true
[dependencies]
reth-codecs.workspace = true
alloy-consensus.workspace = true
alloy-eips.workspace = true
alloy-genesis.workspace = true
alloy-primitives.workspace = true
alloy-consensus.workspace = true
alloy-rlp.workspace = true
alloy-rpc-types-eth = { workspace = true, optional = true }
derive_more.workspace = true
revm-primitives.workspace = true
# required by reth-codecs
modular-bitfield.workspace = true
@ -33,11 +39,13 @@ arbitrary = { workspace = true, features = ["derive"] }
proptest.workspace = true
proptest-derive.workspace = true
test-fuzz.workspace = true
rand.workspace = true
[features]
test-utils = ["arbitrary"]
arbitrary = [
"dep:arbitrary",
"dep:proptest",
"dep:proptest-derive"
]
alloy-compat = ["alloy-rpc-types-eth"]