diff --git a/Cargo.lock b/Cargo.lock index 652d49fac..8c3608a53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6296,6 +6296,7 @@ dependencies = [ "reth-rpc-types-compat", "reth-stages", "reth-static-file", + "reth-static-file-types", "reth-tasks", "reth-tracing", "reth-transaction-pool", diff --git a/bin/reth-bench/Cargo.toml b/bin/reth-bench/Cargo.toml index bca2cf4f8..a0bf299f1 100644 --- a/bin/reth-bench/Cargo.toml +++ b/bin/reth-bench/Cargo.toml @@ -21,7 +21,7 @@ reth-node-core.workspace = true reth-node-api.workspace = true reth-rpc-types.workspace = true reth-rpc-types-compat.workspace = true -reth-primitives = { workspace = true, features = ["clap", "alloy-compat"] } +reth-primitives = { workspace = true, features = ["alloy-compat"] } reth-tracing.workspace = true # alloy diff --git a/bin/reth/Cargo.toml b/bin/reth/Cargo.toml index 38410737e..eebc415e7 100644 --- a/bin/reth/Cargo.toml +++ b/bin/reth/Cargo.toml @@ -15,7 +15,7 @@ workspace = true [dependencies] # reth reth-config.workspace = true -reth-primitives = { workspace = true, features = ["arbitrary", "clap"] } +reth-primitives = { workspace = true, features = ["arbitrary"] } reth-fs-util.workspace = true reth-db = { workspace = true, features = ["mdbx"] } reth-db-api.workspace = true @@ -49,7 +49,8 @@ reth-payload-validator.workspace = true reth-basic-payload-builder.workspace = true reth-discv4.workspace = true reth-discv5.workspace = true -reth-static-file = { workspace = true } +reth-static-file.workspace = true +reth-static-file-types = { workspace = true, features = ["clap"] } reth-trie = { workspace = true, features = ["metrics"] } reth-nippy-jar.workspace = true reth-node-api.workspace = true diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 5d3cc821e..dc3efc7d7 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -111,7 +111,6 @@ c-kzg = [ "alloy-eips/kzg", ] zstd-codec = ["dep:zstd"] -clap = ["reth-static-file-types/clap"] optimism = [ "reth-codecs/optimism", "reth-ethereum-forks/optimism",