Skip to content

Commit

Permalink
chore: disable itertools default features (#13500)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse authored Dec 22, 2024
1 parent 0a5e430 commit 1d0bb3d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .config/zepter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down
2 changes: 1 addition & 1 deletion crates/exex/exex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/trie/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1d0bb3d

Please sign in to comment.