1 | [package] |
2 | name = "parking_lot" |
3 | version = "0.12.1" |
4 | authors = ["Amanieu d'Antras <amanieu@gmail.com>" ] |
5 | description = "More compact and efficient implementations of the standard synchronization primitives." |
6 | license = "MIT OR Apache-2.0" |
7 | repository = "https://github.com/Amanieu/parking_lot" |
8 | readme = "README.md" |
9 | keywords = ["mutex" , "condvar" , "rwlock" , "once" , "thread" ] |
10 | categories = ["concurrency" ] |
11 | edition = "2018" |
12 | |
13 | [dependencies] |
14 | parking_lot_core = { path = "core" , version = "0.9.0" } |
15 | lock_api = { path = "lock_api" , version = "0.4.6" } |
16 | |
17 | [dev-dependencies] |
18 | rand = "0.8.3" |
19 | |
20 | # Used when testing out serde support. |
21 | bincode = "1.3.3" |
22 | |
23 | [features] |
24 | default = [] |
25 | arc_lock = ["lock_api/arc_lock" ] |
26 | owning_ref = ["lock_api/owning_ref" ] |
27 | nightly = ["parking_lot_core/nightly" , "lock_api/nightly" ] |
28 | deadlock_detection = ["parking_lot_core/deadlock_detection" ] |
29 | serde = ["lock_api/serde" ] |
30 | send_guard = [] |
31 | hardware-lock-elision = [] |
32 | |
33 | [workspace] |
34 | exclude = ["benchmark" ] |
35 | |