chore: unused dependencies warnings (#13369)

This commit is contained in:
DaniPopes
2024-12-12 23:06:34 +01:00
committed by GitHub
parent a212e1b36f
commit cfdd740a9b
3 changed files with 10 additions and 12 deletions

1
Cargo.lock generated
View File

@ -2982,7 +2982,6 @@ name = "example-custom-payload-builder"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"alloy-eips", "alloy-eips",
"alloy-primitives",
"eyre", "eyre",
"futures-util", "futures-util",
"reth", "reth",

View File

@ -35,18 +35,18 @@ bytes.workspace = true
[features] [features]
reth-codec = [ reth-codec = [
"dep:reth-codecs", "dep:reth-codecs",
"dep:bytes", "dep:bytes",
"dep:modular-bitfield", "dep:modular-bitfield",
"reth-trie-common/reth-codec" "reth-trie-common/reth-codec",
] ]
test-utils = [ test-utils = [
"dep:arbitrary", "dep:arbitrary",
"reth-codecs/test-utils", "reth-codecs?/test-utils",
"reth-trie-common/test-utils" "reth-trie-common/test-utils",
] ]
arbitrary = [ arbitrary = [
"alloy-primitives/arbitrary", "alloy-primitives/arbitrary",
"reth-codecs/arbitrary", "reth-codecs?/arbitrary",
"reth-trie-common/arbitrary" "reth-trie-common/arbitrary",
] ]

View File

@ -15,7 +15,6 @@ reth-payload-builder.workspace = true
reth-node-ethereum.workspace = true reth-node-ethereum.workspace = true
reth-ethereum-payload-builder.workspace = true reth-ethereum-payload-builder.workspace = true
alloy-primitives.workspace = true
alloy-eips.workspace = true alloy-eips.workspace = true
tracing.workspace = true tracing.workspace = true