Skip to content

Commit e39efde

Browse files
Paul Iatcheniifacebook-github-bot
authored andcommitted
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](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
1 parent 8a97c93 commit e39efde

File tree

25 files changed

+49
-49
lines changed

25 files changed

+49
-49
lines changed

hphp/hack/src/Cargo.lock

Lines changed: 25 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hphp/hack/src/depgraph/balanced_partition/cargo/balanced_partition/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ path = "../../lib.rs"
1212
crate-type = ["lib", "staticlib"]
1313

1414
[dependencies]
15-
itertools = "0.11.0"
15+
itertools = "0.12.1"
1616
log = { version = "0.4.22", features = ["kv_unstable"] }
1717
rayon = "1.9.0"

hphp/hack/src/deps/cargo/deps_rust/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crate-type = ["lib", "staticlib"]
1515
dep_graph_delta = { version = "0.0.0", path = "../.." }
1616
depgraph_reader = { version = "0.0.0", path = "../../../depgraph/cargo/depgraph_reader" }
1717
hash = { version = "0.0.0", path = "../../../utils/hash" }
18-
itertools = "0.11.0"
18+
itertools = "0.12.1"
1919
ocamlrep = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }
2020
ocamlrep_custom = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }
2121
parking_lot = { version = "0.12.1", features = ["send_guard"] }

hphp/hack/src/elab/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bitflags = { version = "2.6", features = ["serde"] }
1515
bstr = { version = "1.10.0", features = ["serde", "std", "unicode"] }
1616
elaborate_namespaces_visitor = { version = "0.0.0", path = "../naming/cargo/elaborate_namespaces" }
1717
hack_macros = { version = "0.0.0", path = "../utils/hack_macros/cargo/hack_macros" }
18-
itertools = "0.11.0"
18+
itertools = "0.12.1"
1919
naming_special_names_rust = { version = "0.0.0", path = "../naming" }
2020
oxidized = { version = "0.0.0", path = "../oxidized" }
2121
relative_path = { version = "0.0.0", path = "../utils/rust/relative_path" }

hphp/hack/src/hackc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ hhvm_config = { version = "0.0.0", path = "hhvm_config/cargo/options" }
3939
hhvm_options = { version = "0.0.0", path = "../utils/hhvm_options" }
4040
ir = { version = "0.0.0", path = "ir" }
4141
ir_to_bc = { version = "0.0.0", path = "ir/conversions/ir_to_bc" }
42-
itertools = "0.11.0"
42+
itertools = "0.12.1"
4343
jwalk = "0.6"
4444
log = { version = "0.4.22", features = ["kv_unstable"] }
4545
multifile_rust = { version = "0.0.0", path = "../utils/multifile" }

hphp/hack/src/hackc/bytecode_printer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ hhbc = { version = "0.0.0", path = "../hhbc/cargo/hhbc" }
2020
hhbc_string_utils = { version = "0.0.0", path = "../utils/cargo/hhbc_string_utils" }
2121
hhvm_hhbc_defs_ffi = { version = "0.0.0", path = "../hhvm_cxx/hhvm_hhbc_defs" }
2222
hhvm_types_ffi = { version = "0.0.0", path = "../hhvm_cxx/hhvm_types" }
23-
itertools = "0.11.0"
23+
itertools = "0.12.1"
2424
print_opcode = { version = "0.0.0", path = "print_opcode/cargo/lib" }
2525
relative_path = { version = "0.0.0", path = "../../utils/rust/relative_path" }
2626
thiserror = "1.0.64"

hphp/hack/src/hackc/cargo/assemble_opcode_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ proc-macro = true
1515

1616
[dependencies]
1717
hhbc-gen = { version = "0.0.0", path = "../../../../../tools/hhbc-gen" }
18-
itertools = "0.11.0"
18+
itertools = "0.12.1"
1919
proc-macro2 = { version = "1.0.70", features = ["span-locations"] }
2020
quote = "1.0.29"
2121
syn = { version = "1.0.109", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }

hphp/hack/src/hackc/compile/cargo/closure_convert/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ hack_macros = { version = "0.0.0", path = "../../../../utils/hack_macros/cargo/h
1919
hash = { version = "0.0.0", path = "../../../../utils/hash" }
2020
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
2121
hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_string_utils" }
22-
itertools = "0.11.0"
22+
itertools = "0.12.1"
2323
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }
2424
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
2525
stack_limit = { version = "0.0.0", path = "../../../../utils/stack_limit" }

hphp/hack/src/hackc/emitter/cargo/constant_folder/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env = { version = "0.0.0", path = "../env" }
1616
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
1717
hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_string_utils" }
1818
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
19-
itertools = "0.11.0"
19+
itertools = "0.12.1"
2020
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }
2121
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
2222
stack_limit = { version = "0.0.0", path = "../../../../utils/stack_limit" }

hphp/hack/src/hackc/emitter/cargo/emit_unit/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_strin
3232
hhvm_types_ffi = { version = "0.0.0", path = "../../../hhvm_cxx/hhvm_types" }
3333
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
3434
instruction_sequence = { version = "0.0.0", path = "../instruction_sequence" }
35-
itertools = "0.11.0"
35+
itertools = "0.12.1"
3636
label_rewriter = { version = "0.0.0", path = "../label_rewriter" }
3737
lazy_static = "1.4"
3838
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }

0 commit comments

Comments
 (0)