1[package]
2name = "parking_lot"
3version = "0.7.1"
4authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
5description = "More compact and efficient implementations of the standard synchronization primitives."
6license = "Apache-2.0/MIT"
7repository = "https://github.com/Amanieu/parking_lot"
8readme = "README.md"
9keywords = ["mutex", "condvar", "rwlock", "once", "thread"]
10categories = ["concurrency"]
11
12[dependencies]
13parking_lot_core = { path = "core", version = "0.4" }
14lock_api = { path = "lock_api", version = "0.1" }
15
16[dev-dependencies]
17rand = "0.6"
18
19[features]
20default = ["owning_ref"]
21owning_ref = ["lock_api/owning_ref"]
22nightly = ["parking_lot_core/nightly", "lock_api/nightly"]
23deadlock_detection = ["parking_lot_core/deadlock_detection"]
24
25[workspace]
26exclude = ["benchmark"]
27