-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
174: Upgrade parking_lot. r=khuey a=khuey Co-authored-by: Kyle Huey <[email protected]>
- Loading branch information
Showing
2 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "once_cell" | ||
version = "1.9.0" | ||
version = "1.10.0" | ||
authors = ["Aleksey Kladov <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
|
@@ -22,7 +22,7 @@ members = ["xtask"] | |
# Uses parking_lot to implement once_cell::sync::OnceCell. | ||
# This makes not speed difference, but makes each OnceCell<T> | ||
# for up to 16 bytes smaller, depending on the size of the T. | ||
parking_lot = { version = "0.11", optional = true, default_features = false } | ||
parking_lot = { version = "0.12", optional = true, default_features = false } | ||
|
||
# To be used in order to enable the race feature on targets | ||
# that do not have atomics | ||
|