Skip to content

Commit c4ca638

Browse files
committed
Update parking_lot dependency to avoid use of deprecated asm!
1 parent 3475be3 commit c4ca638

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

Cargo.lock

+12-12
Original file line numberDiff line numberDiff line change
@@ -1736,7 +1736,7 @@ checksum = "5b31c9b90731276fdd24d896f31bb10aecf2e5151733364ae81123186643d939"
17361736
dependencies = [
17371737
"jsonrpc-core",
17381738
"log",
1739-
"parking_lot 0.10.0",
1739+
"parking_lot 0.10.2",
17401740
"serde",
17411741
]
17421742

@@ -1855,9 +1855,9 @@ checksum = "ae91b68aebc4ddb91978b11a1b02ddd8602a05ec19002801c5666000e05e0f83"
18551855

18561856
[[package]]
18571857
name = "lock_api"
1858-
version = "0.3.1"
1858+
version = "0.3.4"
18591859
source = "registry+https://github.com/rust-lang/crates.io-index"
1860-
checksum = "f8912e782533a93a167888781b836336a6ca5da6175c05944c86cf28c31104dc"
1860+
checksum = "c4da24a77a3d8a6d4862d95f72e6fdb9c09a643ecdb402d754004a557f2bec75"
18611861
dependencies = [
18621862
"scopeguard",
18631863
]
@@ -2395,12 +2395,12 @@ dependencies = [
23952395

23962396
[[package]]
23972397
name = "parking_lot"
2398-
version = "0.10.0"
2398+
version = "0.10.2"
23992399
source = "registry+https://github.com/rust-lang/crates.io-index"
2400-
checksum = "92e98c49ab0b7ce5b222f2cc9193fc4efe11c6d0bd4f648e374684a6857b1cfc"
2400+
checksum = "d3a704eb390aafdc107b0e392f56a82b668e3a71366993b5340f5833fd62505e"
24012401
dependencies = [
24022402
"lock_api",
2403-
"parking_lot_core 0.7.0",
2403+
"parking_lot_core 0.7.1",
24042404
]
24052405

24062406
[[package]]
@@ -2420,9 +2420,9 @@ dependencies = [
24202420

24212421
[[package]]
24222422
name = "parking_lot_core"
2423-
version = "0.7.0"
2423+
version = "0.7.1"
24242424
source = "registry+https://github.com/rust-lang/crates.io-index"
2425-
checksum = "7582838484df45743c8434fbff785e8edf260c28748353d44bc0da32e0ceabf1"
2425+
checksum = "0e136c1904604defe99ce5fd71a28d473fa60a12255d511aa78a9ddf11237aeb"
24262426
dependencies = [
24272427
"cfg-if",
24282428
"cloudabi",
@@ -3240,7 +3240,7 @@ dependencies = [
32403240
"lazy_static 1.4.0",
32413241
"log",
32423242
"measureme",
3243-
"parking_lot 0.10.0",
3243+
"parking_lot 0.10.2",
32443244
"rustc-ap-graphviz",
32453245
"rustc-ap-rustc_index",
32463246
"rustc-ap-serialize",
@@ -3686,7 +3686,7 @@ dependencies = [
36863686
"libc",
36873687
"log",
36883688
"measureme",
3689-
"parking_lot 0.10.0",
3689+
"parking_lot 0.10.2",
36903690
"rustc-hash",
36913691
"rustc-rayon",
36923692
"rustc-rayon-core",
@@ -3984,7 +3984,7 @@ dependencies = [
39843984
"jobserver",
39853985
"log",
39863986
"measureme",
3987-
"parking_lot 0.10.0",
3987+
"parking_lot 0.10.2",
39883988
"polonius-engine",
39893989
"rustc-rayon",
39903990
"rustc-rayon-core",
@@ -4133,7 +4133,7 @@ name = "rustc_query_system"
41334133
version = "0.0.0"
41344134
dependencies = [
41354135
"log",
4136-
"parking_lot 0.9.0",
4136+
"parking_lot 0.10.2",
41374137
"rustc-rayon-core",
41384138
"rustc_data_structures",
41394139
"rustc_errors",

src/librustc_query_system/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ rustc_index = { path = "../librustc_index" }
1818
rustc_macros = { path = "../librustc_macros" }
1919
rustc_serialize = { path = "../libserialize", package = "serialize" }
2020
rustc_span = { path = "../librustc_span" }
21-
parking_lot = "0.9"
21+
parking_lot = "0.10"
2222
smallvec = { version = "1.0", features = ["union", "may_dangle"] }

0 commit comments

Comments
 (0)