Skip to content

Commit 52501c2

Browse files
committed
bump itertools to 0.12
still depend on 0.11: * clippy * rustfmt, sigh
1 parent 9fb91aa commit 52501c2

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
@@ -3497,7 +3497,7 @@ dependencies = [
34973497
name = "rustc_ast_passes"
34983498
version = "0.0.0"
34993499
dependencies = [
3500-
"itertools 0.11.0",
3500+
"itertools 0.12.1",
35013501
"rustc_ast",
35023502
"rustc_ast_pretty",
35033503
"rustc_attr",
@@ -3517,7 +3517,7 @@ dependencies = [
35173517
name = "rustc_ast_pretty"
35183518
version = "0.0.0"
35193519
dependencies = [
3520-
"itertools 0.11.0",
3520+
"itertools 0.12.1",
35213521
"rustc_ast",
35223522
"rustc_lexer",
35233523
"rustc_span",
@@ -3558,7 +3558,7 @@ name = "rustc_borrowck"
35583558
version = "0.0.0"
35593559
dependencies = [
35603560
"either",
3561-
"itertools 0.11.0",
3561+
"itertools 0.12.1",
35623562
"polonius-engine",
35633563
"rustc_data_structures",
35643564
"rustc_errors",
@@ -3611,7 +3611,7 @@ name = "rustc_codegen_llvm"
36113611
version = "0.0.0"
36123612
dependencies = [
36133613
"bitflags 2.4.2",
3614-
"itertools 0.11.0",
3614+
"itertools 0.12.1",
36153615
"libc",
36163616
"measureme",
36173617
"object",
@@ -3647,7 +3647,7 @@ dependencies = [
36473647
"ar_archive_writer",
36483648
"bitflags 2.4.2",
36493649
"cc",
3650-
"itertools 0.11.0",
3650+
"itertools 0.12.1",
36513651
"jobserver",
36523652
"libc",
36533653
"object",
@@ -3929,7 +3929,7 @@ dependencies = [
39293929
name = "rustc_hir_analysis"
39303930
version = "0.0.0"
39313931
dependencies = [
3932-
"itertools 0.11.0",
3932+
"itertools 0.12.1",
39333933
"rustc_arena",
39343934
"rustc_ast",
39353935
"rustc_attr",
@@ -3968,7 +3968,7 @@ dependencies = [
39683968
name = "rustc_hir_typeck"
39693969
version = "0.0.0"
39703970
dependencies = [
3971-
"itertools 0.11.0",
3971+
"itertools 0.12.1",
39723972
"rustc_ast",
39733973
"rustc_ast_ir",
39743974
"rustc_attr",
@@ -4255,7 +4255,7 @@ name = "rustc_mir_build"
42554255
version = "0.0.0"
42564256
dependencies = [
42574257
"either",
4258-
"itertools 0.11.0",
4258+
"itertools 0.12.1",
42594259
"rustc_apfloat",
42604260
"rustc_arena",
42614261
"rustc_ast",
@@ -4302,7 +4302,7 @@ name = "rustc_mir_transform"
43024302
version = "0.0.0"
43034303
dependencies = [
43044304
"either",
4305-
"itertools 0.11.0",
4305+
"itertools 0.12.1",
43064306
"rustc_arena",
43074307
"rustc_ast",
43084308
"rustc_attr",
@@ -4382,7 +4382,6 @@ dependencies = [
43824382
name = "rustc_passes"
43834383
version = "0.0.0"
43844384
dependencies = [
4385-
"itertools 0.11.0",
43864385
"rustc_ast",
43874386
"rustc_ast_pretty",
43884387
"rustc_attr",
@@ -4632,7 +4631,7 @@ name = "rustc_trait_selection"
46324631
version = "0.0.0"
46334632
dependencies = [
46344633
"bitflags 2.4.2",
4635-
"itertools 0.11.0",
4634+
"itertools 0.12.1",
46364635
"rustc_ast",
46374636
"rustc_ast_ir",
46384637
"rustc_attr",
@@ -4672,7 +4671,7 @@ dependencies = [
46724671
name = "rustc_transmute"
46734672
version = "0.0.0"
46744673
dependencies = [
4675-
"itertools 0.11.0",
4674+
"itertools 0.12.1",
46764675
"rustc_ast_ir",
46774676
"rustc_data_structures",
46784677
"rustc_hir",
@@ -4688,7 +4687,7 @@ dependencies = [
46884687
name = "rustc_ty_utils"
46894688
version = "0.0.0"
46904689
dependencies = [
4691-
"itertools 0.11.0",
4690+
"itertools 0.12.1",
46924691
"rustc_ast_ir",
46934692
"rustc_data_structures",
46944693
"rustc_errors",
@@ -4738,7 +4737,7 @@ dependencies = [
47384737
"askama",
47394738
"expect-test",
47404739
"indexmap",
4741-
"itertools 0.11.0",
4740+
"itertools 0.12.1",
47424741
"minifier",
47434742
"once_cell",
47444743
"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_lexer = { path = "../rustc_lexer" }
1111
rustc_span = { path = "../rustc_span" }

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.90"
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_ast_ir = { path = "../rustc_ast_ir" }
1111
rustc_attr = { path = "../rustc_attr" }

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_ast_ir = { path = "../rustc_ast_ir" }
1212
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_transmute/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ rustc = [
2929

3030
[dev-dependencies]
3131
# tidy-alphabetical-start
32-
itertools = "0.11"
32+
itertools = "0.12"
3333
# 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_ast_ir = { path = "../rustc_ast_ir" }
1010
rustc_data_structures = { path = "../rustc_data_structures" }
1111
rustc_errors = { path = "../rustc_errors" }

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)