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 8a97c93 commit e39efde
Show file tree
Hide file tree
Showing 25 changed files with 49 additions and 49 deletions.
50 changes: 25 additions & 25 deletions hphp/hack/src/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ path = "../../lib.rs"
crate-type = ["lib", "staticlib"]

[dependencies]
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
rayon = "1.9.0"
2 changes: 1 addition & 1 deletion hphp/hack/src/deps/cargo/deps_rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ crate-type = ["lib", "staticlib"]
dep_graph_delta = { version = "0.0.0", path = "../.." }
depgraph_reader = { version = "0.0.0", path = "../../../depgraph/cargo/depgraph_reader" }
hash = { version = "0.0.0", path = "../../../utils/hash" }
itertools = "0.11.0"
itertools = "0.12.1"
ocamlrep = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }
ocamlrep_custom = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }
parking_lot = { version = "0.12.1", features = ["send_guard"] }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/elab/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ bitflags = { version = "2.6", features = ["serde"] }
bstr = { version = "1.10.0", features = ["serde", "std", "unicode"] }
elaborate_namespaces_visitor = { version = "0.0.0", path = "../naming/cargo/elaborate_namespaces" }
hack_macros = { version = "0.0.0", path = "../utils/hack_macros/cargo/hack_macros" }
itertools = "0.11.0"
itertools = "0.12.1"
naming_special_names_rust = { version = "0.0.0", path = "../naming" }
oxidized = { version = "0.0.0", path = "../oxidized" }
relative_path = { version = "0.0.0", path = "../utils/rust/relative_path" }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ hhvm_config = { version = "0.0.0", path = "hhvm_config/cargo/options" }
hhvm_options = { version = "0.0.0", path = "../utils/hhvm_options" }
ir = { version = "0.0.0", path = "ir" }
ir_to_bc = { version = "0.0.0", path = "ir/conversions/ir_to_bc" }
itertools = "0.11.0"
itertools = "0.12.1"
jwalk = "0.6"
log = { version = "0.4.22", features = ["kv_unstable"] }
multifile_rust = { version = "0.0.0", path = "../utils/multifile" }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/bytecode_printer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ hhbc = { version = "0.0.0", path = "../hhbc/cargo/hhbc" }
hhbc_string_utils = { version = "0.0.0", path = "../utils/cargo/hhbc_string_utils" }
hhvm_hhbc_defs_ffi = { version = "0.0.0", path = "../hhvm_cxx/hhvm_hhbc_defs" }
hhvm_types_ffi = { version = "0.0.0", path = "../hhvm_cxx/hhvm_types" }
itertools = "0.11.0"
itertools = "0.12.1"
print_opcode = { version = "0.0.0", path = "print_opcode/cargo/lib" }
relative_path = { version = "0.0.0", path = "../../utils/rust/relative_path" }
thiserror = "1.0.64"
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/cargo/assemble_opcode_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ proc-macro = true

[dependencies]
hhbc-gen = { version = "0.0.0", path = "../../../../../tools/hhbc-gen" }
itertools = "0.11.0"
itertools = "0.12.1"
proc-macro2 = { version = "1.0.70", features = ["span-locations"] }
quote = "1.0.29"
syn = { version = "1.0.109", features = ["extra-traits", "fold", "full", "visit", "visit-mut"] }
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ hack_macros = { version = "0.0.0", path = "../../../../utils/hack_macros/cargo/h
hash = { version = "0.0.0", path = "../../../../utils/hash" }
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_string_utils" }
itertools = "0.11.0"
itertools = "0.12.1"
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
stack_limit = { version = "0.0.0", path = "../../../../utils/stack_limit" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env = { version = "0.0.0", path = "../env" }
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_string_utils" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
itertools = "0.11.0"
itertools = "0.12.1"
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
stack_limit = { version = "0.0.0", path = "../../../../utils/stack_limit" }
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/emitter/cargo/emit_unit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ hhbc_string_utils = { version = "0.0.0", path = "../../../utils/cargo/hhbc_strin
hhvm_types_ffi = { version = "0.0.0", path = "../../../hhvm_cxx/hhvm_types" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
instruction_sequence = { version = "0.0.0", path = "../instruction_sequence" }
itertools = "0.11.0"
itertools = "0.12.1"
label_rewriter = { version = "0.0.0", path = "../label_rewriter" }
lazy_static = "1.4"
naming_special_names_rust = { version = "0.0.0", path = "../../../../naming" }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/ir/analysis/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ path = "lib.rs"

[dependencies]
ir_core = { version = "0.0.0", path = "../ir_core" }
itertools = "0.11.0"
itertools = "0.12.1"
newtype = { version = "0.0.0", path = "../../../utils/newtype" }
print = { version = "0.0.0", path = "../print" }
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/ir/assemble/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "lib.rs"
anyhow = "1.0.86"
hash = { version = "0.0.0", path = "../../../utils/hash" }
ir_core = { version = "0.0.0", path = "../ir_core" }
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
naming_special_names_rust = { version = "0.0.0", path = "../../../naming" }
parse_macro_ir = { version = "0.0.0", path = "../cargo/parse_macro" }
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/ir/conversions/ir_to_bc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ hash = { version = "0.0.0", path = "../../../../utils/hash" }
hhbc = { version = "0.0.0", path = "../../../hhbc/cargo/hhbc" }
instruction_sequence = { version = "0.0.0", path = "../../../emitter/cargo/instruction_sequence" }
ir = { version = "0.0.0", path = "../.." }
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
smallvec = { version = "1.6.1", features = ["serde", "specialization", "union"] }
stack_depth = { version = "0.0.0", path = "../../../utils/cargo/stack_depth" }
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ doctest = false
proc-macro = true

[dependencies]
itertools = "0.11.0"
itertools = "0.12.1"
proc-macro-error = "1.0"
proc-macro2 = { version = "1.0.70", features = ["span-locations"] }
quote = "1.0.29"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ hash = { version = "0.0.0", path = "../../../../../../utils/hash" }
hhbc = { version = "0.0.0", path = "../../../../../hhbc/cargo/hhbc" }
hhbc_string_utils = { version = "0.0.0", path = "../../../../../utils/cargo/hhbc_string_utils" }
ir = { version = "0.0.0", path = "../../../.." }
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
naming_special_names_rust = { version = "0.0.0", path = "../../../../../../naming" }
newtype = { version = "0.0.0", path = "../../../../../../utils/newtype" }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/ir/passes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ path = "lib.rs"
[dependencies]
analysis = { version = "0.0.0", path = "../analysis" }
ir_core = { version = "0.0.0", path = "../ir_core" }
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
newtype = { version = "0.0.0", path = "../../../utils/newtype" }
print = { version = "0.0.0", path = "../print" }
Expand Down
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/ir/verify/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ path = "lib.rs"
[dependencies]
analysis = { version = "0.0.0", path = "../analysis" }
ir_core = { version = "0.0.0", path = "../ir_core" }
itertools = "0.11.0"
itertools = "0.12.1"
print = { version = "0.0.0", path = "../print" }
2 changes: 1 addition & 1 deletion hphp/hack/src/hackc/sem_diff/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ ffi = { version = "0.0.0", path = "../ffi/ffi" }
hash = { version = "0.0.0", path = "../../utils/hash" }
hhbc = { version = "0.0.0", path = "../hhbc/cargo/hhbc" }
hhbc-gen = { version = "0.0.0", path = "../../../../tools/hhbc-gen" }
itertools = "0.11.0"
itertools = "0.12.1"
log = { version = "0.4.22", features = ["kv_unstable"] }
newtype = { version = "0.0.0", path = "../../utils/newtype" }
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ decl_enforceability = { version = "0.0.0", path = "../../../decl_enforceability"
eq_modulo_pos = { version = "0.0.0", path = "../../../../utils/eq_modulo_pos" }
hash = { version = "0.0.0", path = "../../../../utils/hash" }
indexmap = { version = "2.2.6", features = ["arbitrary", "rayon", "serde"] }
itertools = "0.11.0"
itertools = "0.12.1"
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
pos = { version = "0.0.0", path = "../../../pos/cargo/pos" }
shallow_decl_provider = { version = "0.0.0", path = "../../../shallow_decl_provider/cargo/shallow_decl_provider" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ file_provider = { version = "0.0.0", path = "../../../file_provider/cargo/file_p
folded_decl_provider = { version = "0.0.0", path = "../../../folded_decl_provider/cargo/folded_decl_provider" }
hackrs_test_utils = { version = "0.0.0", path = "../../../hackrs_test_utils/cargo/hackrs_test_utils" }
hh24_test = { version = "0.0.0", path = "../../../../utils/cargo/hh24_test" }
itertools = "0.11.0"
itertools = "0.12.1"
maplit = "1.0"
naming_provider = { version = "0.0.0", path = "../../../naming_provider/cargo/naming_provider" }
ocamlrep = { version = "0.1.0", git = "https://github.com/facebook/ocamlrep/", branch = "main" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "../../shallow_decl_provider.rs"
anyhow = "1.0.86"
datastore = { version = "0.0.0", path = "../../../datastore" }
decl_parser = { version = "0.0.0", path = "../../../decl_parser/cargo/decl_parser" }
itertools = "0.11.0"
itertools = "0.12.1"
naming_provider = { version = "0.0.0", path = "../../../naming_provider/cargo/naming_provider" }
oxidized = { version = "0.0.0", path = "../../../../oxidized" }
pos = { version = "0.0.0", path = "../../../pos/cargo/pos" }
Expand Down
Loading

0 comments on commit e39efde

Please sign in to comment.