Skip to content

Commit

Permalink
update itertools 0.11.0 -> 0.12.1
Browse files Browse the repository at this point in the history
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](rust-itertools/itertools#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](rust-itertools/itertools#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
  • Loading branch information
Paul Iatchenii authored and facebook-github-bot committed Oct 14, 2024
1 parent 5c15e43 commit 772a9b8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion shed/slog_glog_fmt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ anyhow = "1.0.86"
chrono = { version = "0.4", features = ["clock", "serde", "std"], default-features = false }
failure_ext = { version = "0.1.0", path = "../failure_ext" }
hostname = "0.3"
itertools = "0.11.0"
itertools = "0.12.1"
slog = { version = "2.7", features = ["max_level_trace", "nested-values"] }
slog-term = "2.8"

Expand Down
2 changes: 1 addition & 1 deletion shed/sorted_vector_map/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ name = "set"
harness = false

[dependencies]
itertools = "0.11.0"
itertools = "0.12.1"
quickcheck = "1.0"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion shed/sql/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ async-trait = "0.1.71"
cloned = { version = "0.1.0", path = "../../cloned" }
futures = { version = "0.3.30", features = ["async-await", "compat"] }
futures_stats = { version = "0.1.0", path = "../../futures_stats" }
itertools = "0.11.0"
itertools = "0.12.1"
mysql_async = "0.31.2"
mysql_client_traits = { version = "0.1.0", path = "../mysql_client_traits" }
mysql_derive = { version = "0.1.0", path = "../derive" }
Expand Down

0 comments on commit 772a9b8

Please sign in to comment.