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" }

hphp/hack/src/hackc/ir/analysis/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ path = "lib.rs"
1212

1313
[dependencies]
1414
ir_core = { version = "0.0.0", path = "../ir_core" }
15-
itertools = "0.11.0"
15+
itertools = "0.12.1"
1616
newtype = { version = "0.0.0", path = "../../../utils/newtype" }
1717
print = { version = "0.0.0", path = "../print" }

hphp/hack/src/hackc/ir/assemble/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "lib.rs"
1414
anyhow = "1.0.86"
1515
hash = { version = "0.0.0", path = "../../../utils/hash" }
1616
ir_core = { version = "0.0.0", path = "../ir_core" }
17-
itertools = "0.11.0"
17+
itertools = "0.12.1"
1818
log = { version = "0.4.22", features = ["kv_unstable"] }
1919
naming_special_names_rust = { version = "0.0.0", path = "../../../naming" }
2020
parse_macro_ir = { version = "0.0.0", path = "../cargo/parse_macro" }

hphp/hack/src/hackc/ir/conversions/ir_to_bc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hash = { version = "0.0.0", path = "../../../../utils/hash" }
1515
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
1616
instruction_sequence = { version = "0.0.0", path = "../../../emitter/cargo/instruction_sequence" }
1717
ir = { version = "0.0.0", path = "../.." }
18-
itertools = "0.11.0"
18+
itertools = "0.12.1"
1919
log = { version = "0.4.22", features = ["kv_unstable"] }
2020
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
2121
stack_depth = { version = "0.0.0", path = "../../../utils/cargo/stack_depth" }

hphp/hack/src/hackc/ir/conversions/textual/cargo/macros/Cargo.toml

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

1616
[dependencies]
17-
itertools = "0.11.0"
17+
itertools = "0.12.1"
1818
proc-macro-error = "1.0"
1919
proc-macro2 = { version = "1.0.70", features = ["span-locations"] }
2020
quote = "1.0.29"

hphp/hack/src/hackc/ir/conversions/textual/cargo/textual/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ hash = { version = "0.0.0", path = "../../../../../../utils/hash" }
1919
hhbc = { version = "0.0.0", path = "../../../../../hhbc/cargo/hhbc" }
2020
hhbc_string_utils = { version = "0.0.0", path = "../../../../../utils/cargo/hhbc_string_utils" }
2121
ir = { version = "0.0.0", path = "../../../.." }
22-
itertools = "0.11.0"
22+
itertools = "0.12.1"
2323
log = { version = "0.4.22", features = ["kv_unstable"] }
2424
naming_special_names_rust = { version = "0.0.0", path = "../../../../../../naming" }
2525
newtype = { version = "0.0.0", path = "../../../../../../utils/newtype" }

hphp/hack/src/hackc/ir/passes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ path = "lib.rs"
1313
[dependencies]
1414
analysis = { version = "0.0.0", path = "../analysis" }
1515
ir_core = { version = "0.0.0", path = "../ir_core" }
16-
itertools = "0.11.0"
16+
itertools = "0.12.1"
1717
log = { version = "0.4.22", features = ["kv_unstable"] }
1818
newtype = { version = "0.0.0", path = "../../../utils/newtype" }
1919
print = { version = "0.0.0", path = "../print" }

hphp/hack/src/hackc/ir/verify/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ path = "lib.rs"
1313
[dependencies]
1414
analysis = { version = "0.0.0", path = "../analysis" }
1515
ir_core = { version = "0.0.0", path = "../ir_core" }
16-
itertools = "0.11.0"
16+
itertools = "0.12.1"
1717
print = { version = "0.0.0", path = "../print" }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ ffi = { version = "0.0.0", path = "../ffi/ffi" }
1818
hash = { version = "0.0.0", path = "../../utils/hash" }
1919
hhbc = { version = "0.0.0", path = "../hhbc/cargo/hhbc" }
2020
hhbc-gen = { version = "0.0.0", path = "../../../../tools/hhbc-gen" }
21-
itertools = "0.11.0"
21+
itertools = "0.12.1"
2222
log = { version = "0.4.22", features = ["kv_unstable"] }
2323
newtype = { version = "0.0.0", path = "../../utils/newtype" }

hphp/hack/src/hackrs/folded_decl_provider/cargo/folded_decl_provider/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ decl_enforceability = { version = "0.0.0", path = "../../../decl_enforceability"
1717
eq_modulo_pos = { version = "0.0.0", path = "../../../../utils/eq_modulo_pos" }
1818
hash = { version = "0.0.0", path = "../../../../utils/hash" }
1919
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
20-
itertools = "0.11.0"
20+
itertools = "0.12.1"
2121
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
2222
pos = { version = "0.0.0", path = "../../../pos/cargo/pos" }
2323
shallow_decl_provider = { version = "0.0.0", path = "../../../shallow_decl_provider/cargo/shallow_decl_provider" }

hphp/hack/src/hackrs/hackrs_test/cargo/hackrs_test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ file_provider = { version = "0.0.0", path = "../../../file_provider/cargo/file_p
1919
folded_decl_provider = { version = "0.0.0", path = "../../../folded_decl_provider/cargo/folded_decl_provider" }
2020
hackrs_test_utils = { version = "0.0.0", path = "../../../hackrs_test_utils/cargo/hackrs_test_utils" }
2121
hh24_test = { version = "0.0.0", path = "../../../../utils/cargo/hh24_test" }
22-
itertools = "0.11.0"
22+
itertools = "0.12.1"
2323
maplit = "1.0"
2424
naming_provider = { version = "0.0.0", path = "../../../naming_provider/cargo/naming_provider" }
2525
ocamlrep = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }

hphp/hack/src/hackrs/shallow_decl_provider/cargo/shallow_decl_provider/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ path = "../../shallow_decl_provider.rs"
1414
anyhow = "1.0.86"
1515
datastore = { version = "0.0.0", path = "../../../datastore" }
1616
decl_parser = { version = "0.0.0", path = "../../../decl_parser/cargo/decl_parser" }
17-
itertools = "0.11.0"
17+
itertools = "0.12.1"
1818
naming_provider = { version = "0.0.0", path = "../../../naming_provider/cargo/naming_provider" }
1919
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
2020
pos = { version = "0.0.0", path = "../../../pos/cargo/pos" }

0 commit comments

Comments
 (0)