From 7080a2f2f9dd2b7742fd7305143eafa0772bf44b 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.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a9979b66..e9006f98 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ path = "print_cst.rs" [dependencies] bstr = { version = "1.10.0", features = ["serde", "std", "unicode"] } clap = { version = "3.2.25", features = ["derive", "env", "regex", "unicode", "wrap_help"] } -itertools = "0.11.0" +itertools = "0.12.1" num_enum = "0.5" ocamlrep = { path = "vendor/ocaml/interop/ocamlrep" } ocamlrep_ocamlpool = { path = "vendor/ocaml/interop/ocamlrep_ocamlpool" }