diff --git a/crates/net/downloaders/Cargo.toml b/crates/net/downloaders/Cargo.toml index 57094813ee..056d809d02 100644 --- a/crates/net/downloaders/Cargo.toml +++ b/crates/net/downloaders/Cargo.toml @@ -51,7 +51,7 @@ thiserror.workspace = true tracing.workspace = true tempfile = { workspace = true, optional = true } -itertools.workspace = true +itertools = { workspace = true, optional = true } [dev-dependencies] async-compression = { workspace = true, features = ["gzip", "tokio"] } @@ -70,7 +70,7 @@ tempfile.workspace = true [features] default = [] -file-client = ["dep:async-compression", "dep:alloy-rlp"] +file-client = ["dep:async-compression", "dep:alloy-rlp", "dep:itertools"] test-utils = [ "tempfile", "reth-consensus/test-utils",