From cfdd740a9ba665ffc1c00dac9f8e9ab01ca9b141 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Thu, 12 Dec 2024 23:06:34 +0100 Subject: [PATCH] chore: unused dependencies warnings (#13369) --- Cargo.lock | 1 - crates/stages/types/Cargo.toml | 20 ++++++++++---------- examples/custom-payload-builder/Cargo.toml | 1 - 3 files changed, 10 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 47e25c632..3d7b68ba6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2982,7 +2982,6 @@ name = "example-custom-payload-builder" version = "0.0.0" dependencies = [ "alloy-eips", - "alloy-primitives", "eyre", "futures-util", "reth", diff --git a/crates/stages/types/Cargo.toml b/crates/stages/types/Cargo.toml index 024341594..8e880dfc7 100644 --- a/crates/stages/types/Cargo.toml +++ b/crates/stages/types/Cargo.toml @@ -35,18 +35,18 @@ bytes.workspace = true [features] reth-codec = [ - "dep:reth-codecs", - "dep:bytes", - "dep:modular-bitfield", - "reth-trie-common/reth-codec" + "dep:reth-codecs", + "dep:bytes", + "dep:modular-bitfield", + "reth-trie-common/reth-codec", ] test-utils = [ - "dep:arbitrary", - "reth-codecs/test-utils", - "reth-trie-common/test-utils" + "dep:arbitrary", + "reth-codecs?/test-utils", + "reth-trie-common/test-utils", ] arbitrary = [ - "alloy-primitives/arbitrary", - "reth-codecs/arbitrary", - "reth-trie-common/arbitrary" + "alloy-primitives/arbitrary", + "reth-codecs?/arbitrary", + "reth-trie-common/arbitrary", ] diff --git a/examples/custom-payload-builder/Cargo.toml b/examples/custom-payload-builder/Cargo.toml index b77a3f294..794062ef6 100644 --- a/examples/custom-payload-builder/Cargo.toml +++ b/examples/custom-payload-builder/Cargo.toml @@ -15,7 +15,6 @@ reth-payload-builder.workspace = true reth-node-ethereum.workspace = true reth-ethereum-payload-builder.workspace = true -alloy-primitives.workspace = true alloy-eips.workspace = true tracing.workspace = true