From ce89ede0bd22e23f6c665e862a4728ab31f992ce Mon Sep 17 00:00:00 2001 From: Paul Iatchenii Date: Mon, 14 Oct 2024 04:27:51 -0700 Subject: [PATCH] update itertools 0.11.0 -> 0.12.1 Summary: [Release Notes for 0.12.0](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md#0120) [Release Notes for 0.12.1](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md#0121) ### Breaking - Made `take_while_inclusive` consume iterator by value ([#709](https://github.com/rust-itertools/itertools/pull/709)) --- there are [2 usages](https://www.internalfb.com/code/search?q=repo%3Afbcode%20take_while_inclusive&lang_filter=rust) in fbcode, verified both manually - Added `Clone` bound to `Unique` ([#777](https://github.com/rust-itertools/itertools/pull/777)) --- there are [37 usages](https://fburl.com/code/hp7vdlch) in fbcode, CI will tell if it breaks Reviewed By: anps77 Differential Revision: D64305791 fbshipit-source-id: fe99131b206905133c4d2b75693090f5ce44f4ca --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fec511df..a8d87a6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -671,9 +671,9 @@ dependencies = [ [[package]] name = "itertools" -version = "0.11.0" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" +checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" dependencies = [ "either", ] diff --git a/Cargo.toml b/Cargo.toml index efc0eb23..72571067 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ fnv = "1.0" globset = { version = "0.4.13", features = ["serde1"] } ignore = "0.4" indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] } -itertools = "0.11.0" +itertools = "0.12.1" log = { version = "0.4.22", features = ["kv_unstable"] } measure_time = "0.8.2" monostate = "0.1.8"