Skip to content

Commit 5551e8b

Browse files
committed
Auto merge of #64381 - mati865:rand, r=alexcrichton
Upgrade parking_lot and tempfile rustc dependencies This should be last piece to unbreak `rustc` in #63848
2 parents f43ac06 + 935394f commit 5551e8b

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -3018,7 +3018,7 @@ dependencies = [
30183018
"log",
30193019
"measureme",
30203020
"num_cpus",
3021-
"parking_lot 0.7.1",
3021+
"parking_lot 0.9.0",
30223022
"polonius-engine",
30233023
"rustc-rayon",
30243024
"rustc-rayon-core",
@@ -3316,7 +3316,7 @@ dependencies = [
33163316
"log",
33173317
"memmap",
33183318
"num_cpus",
3319-
"parking_lot 0.7.1",
3319+
"parking_lot 0.9.0",
33203320
"rustc",
33213321
"rustc_apfloat",
33223322
"rustc_codegen_utils",
@@ -3359,7 +3359,7 @@ dependencies = [
33593359
"jobserver",
33603360
"lazy_static 1.3.0",
33613361
"log",
3362-
"parking_lot 0.7.1",
3362+
"parking_lot 0.9.0",
33633363
"rustc-hash",
33643364
"rustc-rayon",
33653365
"rustc-rayon-core",
@@ -4265,13 +4265,13 @@ dependencies = [
42654265

42664266
[[package]]
42674267
name = "tempfile"
4268-
version = "3.0.5"
4268+
version = "3.1.0"
42694269
source = "registry+https://github.com/rust-lang/crates.io-index"
4270-
checksum = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2"
4270+
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
42714271
dependencies = [
42724272
"cfg-if",
42734273
"libc",
4274-
"rand 0.6.1",
4274+
"rand 0.7.0",
42754275
"redox_syscall",
42764276
"remove_dir_all",
42774277
"winapi 0.3.6",

src/librustc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ rustc_serialize = { path = "../libserialize", package = "serialize" }
3131
syntax = { path = "../libsyntax" }
3232
syntax_pos = { path = "../libsyntax_pos" }
3333
backtrace = "0.3.3"
34-
parking_lot = "0.7"
34+
parking_lot = "0.9"
3535
byteorder = { version = "1.1", features = ["i128"]}
3636
chalk-engine = { version = "0.9.0", default-features=false }
3737
rustc_fs_util = { path = "../librustc_fs_util" }

src/librustc_codegen_ssa/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ memmap = "0.6"
1717
log = "0.4.5"
1818
libc = "0.2.44"
1919
jobserver = "0.1.11"
20-
parking_lot = "0.7"
21-
tempfile = "3.0.5"
20+
parking_lot = "0.9"
21+
tempfile = "3.1"
2222

2323
rustc_serialize = { path = "../libserialize", package = "serialize" }
2424
syntax = { path = "../libsyntax" }

src/librustc_data_structures/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ rustc-hash = "1.0.1"
2626
smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
2727

2828
[dependencies.parking_lot]
29-
version = "0.7"
29+
version = "0.9"
3030
features = ["nightly"]

0 commit comments

Comments
 (0)