Skip to content

Commit 5928056

Browse files
committed
Update itertools to deduplicate it
1 parent 86f7f78 commit 5928056

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

Cargo.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -3719,7 +3719,7 @@ dependencies = [
37193719
name = "rustc_ast_passes"
37203720
version = "0.0.0"
37213721
dependencies = [
3722-
"itertools 0.9.0",
3722+
"itertools 0.10.1",
37233723
"rustc_ast",
37243724
"rustc_ast_pretty",
37253725
"rustc_attr",
@@ -3763,7 +3763,7 @@ name = "rustc_borrowck"
37633763
version = "0.0.0"
37643764
dependencies = [
37653765
"either",
3766-
"itertools 0.9.0",
3766+
"itertools 0.10.1",
37673767
"polonius-engine",
37683768
"rustc_const_eval",
37693769
"rustc_data_structures",
@@ -3844,7 +3844,7 @@ version = "0.0.0"
38443844
dependencies = [
38453845
"bitflags",
38463846
"cc",
3847-
"itertools 0.9.0",
3847+
"itertools 0.10.1",
38483848
"jobserver",
38493849
"libc",
38503850
"object 0.28.1",
@@ -4328,7 +4328,7 @@ name = "rustc_mir_transform"
43284328
version = "0.0.0"
43294329
dependencies = [
43304330
"coverage_test_macros",
4331-
"itertools 0.9.0",
4331+
"itertools 0.10.1",
43324332
"rustc_ast",
43334333
"rustc_attr",
43344334
"rustc_const_eval",

compiler/rustc_ast_passes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.0.0"
44
edition = "2021"
55

66
[dependencies]
7-
itertools = "0.9"
7+
itertools = "0.10"
88
tracing = "0.1"
99
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1010
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_borrowck/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ doctest = false
88

99
[dependencies]
1010
either = "1.5.0"
11-
itertools = "0.9"
11+
itertools = "0.10"
1212
tracing = "0.1"
1313
polonius-engine = "0.13.0"
1414
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ test = false
99
[dependencies]
1010
bitflags = "1.2.1"
1111
cc = "1.0.69"
12-
itertools = "0.9"
12+
itertools = "0.10"
1313
tracing = "0.1"
1414
libc = "0.2.50"
1515
jobserver = "0.1.22"

compiler/rustc_mir_transform/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2021"
77
doctest = false
88

99
[dependencies]
10-
itertools = "0.9"
10+
itertools = "0.10"
1111
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
1212
tracing = "0.1"
1313
rustc_ast = { path = "../rustc_ast" }

0 commit comments

Comments
 (0)