Update itertools to deduplicate it
This commit is contained in:
parent
86f7f78f05
commit
5928056af2
5 changed files with 8 additions and 8 deletions
|
@ -3719,7 +3719,7 @@ dependencies = [
|
||||||
name = "rustc_ast_passes"
|
name = "rustc_ast_passes"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"itertools 0.9.0",
|
"itertools 0.10.1",
|
||||||
"rustc_ast",
|
"rustc_ast",
|
||||||
"rustc_ast_pretty",
|
"rustc_ast_pretty",
|
||||||
"rustc_attr",
|
"rustc_attr",
|
||||||
|
@ -3763,7 +3763,7 @@ name = "rustc_borrowck"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"either",
|
"either",
|
||||||
"itertools 0.9.0",
|
"itertools 0.10.1",
|
||||||
"polonius-engine",
|
"polonius-engine",
|
||||||
"rustc_const_eval",
|
"rustc_const_eval",
|
||||||
"rustc_data_structures",
|
"rustc_data_structures",
|
||||||
|
@ -3844,7 +3844,7 @@ version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags",
|
"bitflags",
|
||||||
"cc",
|
"cc",
|
||||||
"itertools 0.9.0",
|
"itertools 0.10.1",
|
||||||
"jobserver",
|
"jobserver",
|
||||||
"libc",
|
"libc",
|
||||||
"object 0.28.1",
|
"object 0.28.1",
|
||||||
|
@ -4328,7 +4328,7 @@ name = "rustc_mir_transform"
|
||||||
version = "0.0.0"
|
version = "0.0.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"coverage_test_macros",
|
"coverage_test_macros",
|
||||||
"itertools 0.9.0",
|
"itertools 0.10.1",
|
||||||
"rustc_ast",
|
"rustc_ast",
|
||||||
"rustc_attr",
|
"rustc_attr",
|
||||||
"rustc_const_eval",
|
"rustc_const_eval",
|
||||||
|
|
|
@ -4,7 +4,7 @@ version = "0.0.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
|
||||||
rustc_attr = { path = "../rustc_attr" }
|
rustc_attr = { path = "../rustc_attr" }
|
||||||
|
|
|
@ -8,7 +8,7 @@ doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
either = "1.5.0"
|
either = "1.5.0"
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
polonius-engine = "0.13.0"
|
polonius-engine = "0.13.0"
|
||||||
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
||||||
|
|
|
@ -9,7 +9,7 @@ test = false
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bitflags = "1.2.1"
|
bitflags = "1.2.1"
|
||||||
cc = "1.0.69"
|
cc = "1.0.69"
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
libc = "0.2.50"
|
libc = "0.2.50"
|
||||||
jobserver = "0.1.22"
|
jobserver = "0.1.22"
|
||||||
|
|
|
@ -7,7 +7,7 @@ edition = "2021"
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
itertools = "0.9"
|
itertools = "0.10"
|
||||||
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
smallvec = { version = "1.6.1", features = ["union", "may_dangle"] }
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
rustc_ast = { path = "../rustc_ast" }
|
rustc_ast = { path = "../rustc_ast" }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue