From 1d0bb3d127e1c336308c192fdfcb024d205eb72d Mon Sep 17 00:00:00 2001 From: Matthias Seitz Date: Sun, 22 Dec 2024 20:31:12 +0100 Subject: [PATCH] chore: disable itertools default features (#13500) --- .config/zepter.yaml | 2 +- Cargo.toml | 2 +- crates/exex/exex/Cargo.toml | 2 +- crates/trie/common/Cargo.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/zepter.yaml b/.config/zepter.yaml index 22b0bf609..7dde825e6 100644 --- a/.config/zepter.yaml +++ b/.config/zepter.yaml @@ -18,7 +18,7 @@ workflows: # Ignore the case that `A` it outside of the workspace. Otherwise it will report errors in external dependencies that we have no influence on. "--left-side-outside-workspace=ignore", - # Auxillary flags: + # Auxilary flags: "--offline", "--locked", "--show-path", diff --git a/Cargo.toml b/Cargo.toml index 383f3aa91..47301f7cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -505,7 +505,7 @@ fdlimit = "0.3.0" generic-array = "0.14" humantime = "2.1" humantime-serde = "1.1" -itertools = "0.13" +itertools = { version = "0.13", default-features = false } linked_hash_set = "0.1" modular-bitfield = "0.11.2" notify = { version = "6.1.1", default-features = false, features = [ diff --git a/crates/exex/exex/Cargo.toml b/crates/exex/exex/Cargo.toml index b70fb9215..ce00c75e1 100644 --- a/crates/exex/exex/Cargo.toml +++ b/crates/exex/exex/Cargo.toml @@ -46,7 +46,7 @@ tokio.workspace = true ## misc eyre.workspace = true -itertools.workspace = true +itertools = { workspace = true, features = ["use_std"] } metrics.workspace = true parking_lot.workspace = true rmp-serde = "1.3" diff --git a/crates/trie/common/Cargo.toml b/crates/trie/common/Cargo.toml index 4486573b0..a48410ffc 100644 --- a/crates/trie/common/Cargo.toml +++ b/crates/trie/common/Cargo.toml @@ -25,7 +25,7 @@ alloy-serde = { workspace = true, optional = true } bytes = { workspace = true, optional = true } derive_more.workspace = true -itertools.workspace = true +itertools= { workspace = true, features = ["use_alloc"] } nybbles = { workspace = true, features = ["rlp"] } # `serde` feature