-
Notifications
You must be signed in to change notification settings - Fork 222
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release parking_lot 0.12.0, parking_lot_core 0.9.0, lock_api 0.4.6
- Loading branch information
Showing
4 changed files
with
15 additions
and
5 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 = "parking_lot" | ||
version = "0.11.2" | ||
version = "0.12.0" | ||
authors = ["Amanieu d'Antras <[email protected]>"] | ||
description = "More compact and efficient implementations of the standard synchronization primitives." | ||
license = "Apache-2.0/MIT" | ||
|
@@ -11,8 11,8 @@ categories = ["concurrency"] | |
edition = "2018" | ||
|
||
[dependencies] | ||
parking_lot_core = { path = "core", version = "0.8.4" } | ||
lock_api = { path = "lock_api", version = "0.4.5" } | ||
parking_lot_core = { path = "core", version = "0.9.0" } | ||
lock_api = { path = "lock_api", version = "0.4.6" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8.3" | ||
|
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 = "parking_lot_core" | ||
version = "0.8.5" | ||
version = "0.9.0" | ||
authors = ["Amanieu d'Antras <[email protected]>"] | ||
description = "An advanced API for creating custom synchronization primitives." | ||
license = "Apache-2.0/MIT" | ||
|
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 = "lock_api" | ||
version = "0.4.5" | ||
version = "0.4.6" | ||
authors = ["Amanieu d'Antras <[email protected]>"] | ||
description = "Wrappers to create fully-featured Mutex and RwLock types. Compatible with no_std." | ||
license = "Apache-2.0/MIT" | ||
|