Skip to content

Commit ed014c7

Browse files
committed
bump itertools to 0.12
still depend on 0.11: * clippy * rustfmt, sigh
1 parent 1e4f9e3 commit ed014c7

File tree

15 files changed

+26
-28
lines changed

15 files changed

+26
-28
lines changed

Cargo.lock

+13-14
Original file line numberDiff line numberDiff line change
@@ -3454,7 +3454,7 @@ dependencies = [
34543454
name = "rustc_ast_passes"
34553455
version = "0.0.0"
34563456
dependencies = [
3457-
"itertools 0.11.0",
3457+
"itertools 0.12.1",
34583458
"rustc_ast",
34593459
"rustc_ast_pretty",
34603460
"rustc_attr",
@@ -3474,7 +3474,7 @@ dependencies = [
34743474
name = "rustc_ast_pretty"
34753475
version = "0.0.0"
34763476
dependencies = [
3477-
"itertools 0.11.0",
3477+
"itertools 0.12.1",
34783478
"rustc_ast",
34793479
"rustc_span",
34803480
"thin-vec",
@@ -3514,7 +3514,7 @@ name = "rustc_borrowck"
35143514
version = "0.0.0"
35153515
dependencies = [
35163516
"either",
3517-
"itertools 0.11.0",
3517+
"itertools 0.12.1",
35183518
"polonius-engine",
35193519
"rustc_data_structures",
35203520
"rustc_errors",
@@ -3567,7 +3567,7 @@ name = "rustc_codegen_llvm"
35673567
version = "0.0.0"
35683568
dependencies = [
35693569
"bitflags 2.4.2",
3570-
"itertools 0.11.0",
3570+
"itertools 0.12.1",
35713571
"libc",
35723572
"measureme",
35733573
"object",
@@ -3603,7 +3603,7 @@ dependencies = [
36033603
"ar_archive_writer",
36043604
"bitflags 2.4.2",
36053605
"cc",
3606-
"itertools 0.11.0",
3606+
"itertools 0.12.1",
36073607
"jobserver",
36083608
"libc",
36093609
"object",
@@ -3884,7 +3884,7 @@ dependencies = [
38843884
name = "rustc_hir_analysis"
38853885
version = "0.0.0"
38863886
dependencies = [
3887-
"itertools 0.11.0",
3887+
"itertools 0.12.1",
38883888
"rustc_arena",
38893889
"rustc_ast",
38903890
"rustc_attr",
@@ -3923,7 +3923,7 @@ dependencies = [
39233923
name = "rustc_hir_typeck"
39243924
version = "0.0.0"
39253925
dependencies = [
3926-
"itertools 0.11.0",
3926+
"itertools 0.12.1",
39273927
"rustc_ast",
39283928
"rustc_attr",
39293929
"rustc_data_structures",
@@ -4207,7 +4207,7 @@ name = "rustc_mir_build"
42074207
version = "0.0.0"
42084208
dependencies = [
42094209
"either",
4210-
"itertools 0.11.0",
4210+
"itertools 0.12.1",
42114211
"rustc_apfloat",
42124212
"rustc_arena",
42134213
"rustc_ast",
@@ -4254,7 +4254,7 @@ name = "rustc_mir_transform"
42544254
version = "0.0.0"
42554255
dependencies = [
42564256
"either",
4257-
"itertools 0.11.0",
4257+
"itertools 0.12.1",
42584258
"rustc_arena",
42594259
"rustc_ast",
42604260
"rustc_attr",
@@ -4334,7 +4334,6 @@ dependencies = [
43344334
name = "rustc_passes"
43354335
version = "0.0.0"
43364336
dependencies = [
4337-
"itertools 0.11.0",
43384337
"rustc_ast",
43394338
"rustc_ast_pretty",
43404339
"rustc_attr",
@@ -4584,7 +4583,7 @@ name = "rustc_trait_selection"
45844583
version = "0.0.0"
45854584
dependencies = [
45864585
"bitflags 2.4.2",
4587-
"itertools 0.11.0",
4586+
"itertools 0.12.1",
45884587
"rustc_ast",
45894588
"rustc_attr",
45904589
"rustc_data_structures",
@@ -4623,7 +4622,7 @@ dependencies = [
46234622
name = "rustc_transmute"
46244623
version = "0.0.0"
46254624
dependencies = [
4626-
"itertools 0.11.0",
4625+
"itertools 0.12.1",
46274626
"rustc_data_structures",
46284627
"rustc_hir",
46294628
"rustc_infer",
@@ -4638,7 +4637,7 @@ dependencies = [
46384637
name = "rustc_ty_utils"
46394638
version = "0.0.0"
46404639
dependencies = [
4641-
"itertools 0.11.0",
4640+
"itertools 0.12.1",
46424641
"rustc_data_structures",
46434642
"rustc_errors",
46444643
"rustc_fluent_macro",
@@ -4686,7 +4685,7 @@ dependencies = [
46864685
"askama",
46874686
"expect-test",
46884687
"indexmap",
4689-
"itertools 0.11.0",
4688+
"itertools 0.12.1",
46904689
"minifier",
46914690
"once_cell",
46924691
"regex",

compiler/rustc_ast_passes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.11"
8+
itertools = "0.12"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_ast_pretty/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.11"
8+
itertools = "0.12"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_span = { path = "../rustc_span" }
1111
thin-vec = "0.2.12"

compiler/rustc_borrowck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
either = "1.5.0"
9-
itertools = "0.11"
9+
itertools = "0.12"
1010
polonius-engine = "0.13.0"
1111
rustc_data_structures = { path = "../rustc_data_structures" }
1212
rustc_errors = { path = "../rustc_errors" }

compiler/rustc_codegen_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test = false
99
[dependencies]
1010
# tidy-alphabetical-start
1111
bitflags = "2.4.1"
12-
itertools = "0.11"
12+
itertools = "0.12"
1313
libc = "0.2"
1414
measureme = "11"
1515
object = { version = "0.32.0", default-features = false, features = ["std", "read"] }

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ edition = "2021"
88
ar_archive_writer = "0.1.5"
99
bitflags = "2.4.1"
1010
cc = "1.0.69"
11-
itertools = "0.11"
11+
itertools = "0.12"
1212
jobserver = "0.1.28"
1313
pathdiff = "0.2.0"
1414
regex = "1.4"

compiler/rustc_hir_analysis/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ doctest = false
99

1010
[dependencies]
1111
# tidy-alphabetical-start
12-
itertools = "0.11"
12+
itertools = "0.12"
1313
rustc_arena = { path = "../rustc_arena" }
1414
rustc_ast = { path = "../rustc_ast" }
1515
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_hir_typeck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.11"
8+
itertools = "0.12"
99
rustc_ast = { path = "../rustc_ast" }
1010
rustc_attr = { path = "../rustc_attr" }
1111
rustc_data_structures = { path = "../rustc_data_structures" }

compiler/rustc_mir_build/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
either = "1"
9-
itertools = "0.11"
9+
itertools = "0.12"
1010
rustc_apfloat = "0.2.0"
1111
rustc_arena = { path = "../rustc_arena" }
1212
rustc_ast = { path = "../rustc_ast" }

compiler/rustc_mir_transform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
either = "1"
9-
itertools = "0.11"
9+
itertools = "0.12"
1010
rustc_arena = { path = "../rustc_arena" }
1111
rustc_ast = { path = "../rustc_ast" }
1212
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_passes/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.11"
98
rustc_ast = { path = "../rustc_ast" }
109
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1110
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_trait_selection/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
9-
itertools = "0.11.0"
9+
itertools = "0.12"
1010
rustc_ast = { path = "../rustc_ast" }
1111
rustc_attr = { path = "../rustc_attr" }
1212
rustc_data_structures = { path = "../rustc_data_structures" }

compiler/rustc_transmute/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ rustc = [
2727

2828
[dev-dependencies]
2929
# tidy-alphabetical-start
30-
itertools = "0.11"
30+
itertools = "0.12"
3131
# tidy-alphabetical-end

compiler/rustc_ty_utils/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
itertools = "0.11"
8+
itertools = "0.12"
99
rustc_data_structures = { path = "../rustc_data_structures" }
1010
rustc_errors = { path = "../rustc_errors" }
1111
rustc_fluent_macro = { path = "../rustc_fluent_macro" }

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "lib.rs"
99
[dependencies]
1010
arrayvec = { version = "0.7", default-features = false }
1111
askama = { version = "0.12", default-features = false, features = ["config"] }
12-
itertools = "0.11"
12+
itertools = "0.12"
1313
indexmap = "2"
1414
minifier = "0.3.0"
1515
once_cell = "1.10.0"

0 commit comments

Comments
 (0)