From 30ee0ca7b712f20699806ae7589d6cac8bd18639 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 8 Mar 2025 07:56:52 +0000 Subject: [PATCH] Bump itertools from 0.13.0 to 0.14.0 (#2077) Bumps [itertools](https://github.com/rust-itertools/itertools) from 0.13.0 to 0.14.0. - [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0) --- updated-dependencies: - dependency-name: itertools dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Cargo.lock | 8 ++++---- lib/Cargo.toml | 2 +- light-base/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b9e453a5d1..79c043722c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1381,9 +1381,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.13.0" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186" +checksum = "2b192c782037fadd9cfa75548310488aabdbf3d2da73885b31bd0abd03351285" dependencies = [ "either", ] @@ -2338,7 +2338,7 @@ dependencies = [ "hashbrown 0.15.2", "hex", "hmac 0.12.1", - "itertools 0.13.0", + "itertools 0.14.0", "libm", "libsecp256k1", "merlin", @@ -2423,7 +2423,7 @@ dependencies = [ "futures-util", "hashbrown 0.15.2", "hex", - "itertools 0.13.0", + "itertools 0.14.0", "log", "lru", "parking_lot", diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 01046c9a69..82ad2eebe9 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -53,7 +53,7 @@ futures-lite = { version = "2.3.0", default-features = false, features = ["alloc hashbrown = { version = "0.15.0", default-features = false, features = ["raw-entry", "serde"] } # TODO: remove serde feature hex = { version = "0.4.3", default-features = false } hmac = { version = "0.12.1", default-features = false } -itertools = { version = "0.13.0", default-features = false } +itertools = { version = "0.14.0", default-features = false } libm = { version = "0.2.8", default-features = false } libsecp256k1 = { version = "0.7.1", default-features = false, features = ["static-context", "hmac"] } # The log` crate is forbidden, as it is very impolite to emit logs from a library. diff --git a/light-base/Cargo.toml b/light-base/Cargo.toml index 452bf5f342..c80a39136c 100644 --- a/light-base/Cargo.toml +++ b/light-base/Cargo.toml @@ -27,7 +27,7 @@ futures-lite = { version = "2.3.0", default-features = false, features = ["alloc futures-util = { version = "0.3.27", default-features = false, features = ["alloc", "sink"] } # TODO: slim down these features and consider removing this dependency altogether hashbrown = { version = "0.15.0", default-features = false } hex = { version = "0.4.3", default-features = false } -itertools = { version = "0.13.0", default-features = false, features = ["use_alloc"] } +itertools = { version = "0.14.0", default-features = false, features = ["use_alloc"] } lru = { version = "0.12.0", default-features = false, features = ["hashbrown"] } # The `hashbrown` feature brings no-std compatibility. pin-project = "1.1.5" rand = { version = "0.8.5", default-features = false, features = ["alloc"] }