Skip to content

Commit cb6a6a5

Browse files
authored
Rollup merge of rust-lang#64381 - mati865:rand, r=alexcrichton
Upgrade parking_lot and tempfile rustc dependencies This should be last piece to unbreak `rustc` in rust-lang#63848
2 parents 10e8fcc + 935394f commit cb6a6a5

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
@@ -3012,7 +3012,7 @@ dependencies = [
30123012
"log",
30133013
"measureme",
30143014
"num_cpus",
3015-
"parking_lot 0.7.1",
3015+
"parking_lot 0.9.0",
30163016
"polonius-engine",
30173017
"rustc-rayon",
30183018
"rustc-rayon-core",
@@ -3310,7 +3310,7 @@ dependencies = [
33103310
"log",
33113311
"memmap",
33123312
"num_cpus",
3313-
"parking_lot 0.7.1",
3313+
"parking_lot 0.9.0",
33143314
"rustc",
33153315
"rustc_apfloat",
33163316
"rustc_codegen_utils",
@@ -3353,7 +3353,7 @@ dependencies = [
33533353
"jobserver",
33543354
"lazy_static 1.3.0",
33553355
"log",
3356-
"parking_lot 0.7.1",
3356+
"parking_lot 0.9.0",
33573357
"rustc-hash",
33583358
"rustc-rayon",
33593359
"rustc-rayon-core",
@@ -4258,13 +4258,13 @@ dependencies = [
42584258

42594259
[[package]]
42604260
name = "tempfile"
4261-
version = "3.0.5"
4261+
version = "3.1.0"
42624262
source = "registry+https://github.com/rust-lang/crates.io-index"
4263-
checksum = "7e91405c14320e5c79b3d148e1c86f40749a36e490642202a31689cb1a3452b2"
4263+
checksum = "7a6e24d9338a0a5be79593e2fa15a648add6138caa803e2d5bc782c371732ca9"
42644264
dependencies = [
42654265
"cfg-if",
42664266
"libc",
4267-
"rand 0.6.1",
4267+
"rand 0.7.0",
42684268
"redox_syscall",
42694269
"remove_dir_all",
42704270
"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)