Skip to content

Commit bd51226

Browse files
committed
Auto merge of rust-lang#76632 - andjo403:updateDep, r=Mark-Simulacrum
update the version of itertools and parking_lot this is to avoid compiling multiple version of the crates in rustc speeding up compilation of rustc an old version of parking_lot is still used in measureme but new version will not be released for some time see [zulip chat](https://rust-lang.zulipchat.com/#narrow/stream/187831-t-compiler.2Fwg-self-profile/topic/new.20release.20of.20measureme)
2 parents 85109af + b8752ff commit bd51226

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Cargo.lock

+5-5
Original file line numberDiff line numberDiff line change
@@ -3291,7 +3291,7 @@ dependencies = [
32913291
name = "rustc_ast_passes"
32923292
version = "0.0.0"
32933293
dependencies = [
3294-
"itertools 0.8.2",
3294+
"itertools 0.9.0",
32953295
"rustc_ast",
32963296
"rustc_ast_pretty",
32973297
"rustc_attr",
@@ -3423,7 +3423,7 @@ dependencies = [
34233423
"jobserver",
34243424
"libc",
34253425
"measureme",
3426-
"parking_lot 0.10.2",
3426+
"parking_lot 0.11.0",
34273427
"rustc-hash",
34283428
"rustc-rayon",
34293429
"rustc-rayon-core",
@@ -3752,7 +3752,7 @@ name = "rustc_mir"
37523752
version = "0.0.0"
37533753
dependencies = [
37543754
"either",
3755-
"itertools 0.8.2",
3755+
"itertools 0.9.0",
37563756
"log_settings",
37573757
"polonius-engine",
37583758
"regex",
@@ -3877,7 +3877,7 @@ dependencies = [
38773877
name = "rustc_query_system"
38783878
version = "0.0.0"
38793879
dependencies = [
3880-
"parking_lot 0.10.2",
3880+
"parking_lot 0.11.0",
38813881
"rustc-rayon-core",
38823882
"rustc_arena",
38833883
"rustc_data_structures",
@@ -4110,7 +4110,7 @@ name = "rustdoc"
41104110
version = "0.0.0"
41114111
dependencies = [
41124112
"expect-test",
4113-
"itertools 0.8.2",
4113+
"itertools 0.9.0",
41144114
"minifier",
41154115
"pulldown-cmark",
41164116
"rustc-rayon",

compiler/rustc_ast_passes/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version = "0.0.0"
55
edition = "2018"
66

77
[dependencies]
8-
itertools = "0.8"
8+
itertools = "0.9"
99
tracing = "0.1"
1010
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1111
rustc_attr = { path = "../rustc_attr" }

compiler/rustc_data_structures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ stacker = "0.1.11"
3030
tempfile = "3.0.5"
3131

3232
[dependencies.parking_lot]
33-
version = "0.10"
33+
version = "0.11"
3434
features = ["nightly"]
3535

3636
[target.'cfg(windows)'.dependencies]

compiler/rustc_mir/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ doctest = false
1010
[dependencies]
1111
either = "1.5.0"
1212
rustc_graphviz = { path = "../rustc_graphviz" }
13-
itertools = "0.8"
13+
itertools = "0.9"
1414
tracing = "0.1"
1515
log_settings = "0.1.1"
1616
polonius-engine = "0.12.0"

compiler/rustc_query_system/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ rustc_macros = { path = "../rustc_macros" }
1717
rustc_index = { path = "../rustc_index" }
1818
rustc_serialize = { path = "../rustc_serialize" }
1919
rustc_span = { path = "../rustc_span" }
20-
parking_lot = "0.10"
20+
parking_lot = "0.11"
2121
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

src/librustdoc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ serde = { version = "1.0", features = ["derive"] }
1515
serde_json = "1.0"
1616
smallvec = "1.0"
1717
tempfile = "3"
18-
itertools = "0.8"
18+
itertools = "0.9"
1919

2020
[dev-dependencies]
2121
expect-test = "1.0"

0 commit comments

Comments
 (0)