1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2# 3# When uploading crates to the registry Cargo will automatically 4# "normalize" Cargo.toml files for maximal compatibility 5# with all versions of Cargo and also rewrite `path` dependencies 6# to registry (e.g., crates.io) dependencies. 7# 8# If you are reading this file be aware that the original Cargo.toml 9# will likely look very different (and much more reasonable). 10# See Cargo.toml.orig for the original contents. 11 12[package] 13edition = "2018" 14name = "parking_lot" 15version = "0.12.1" 16authors = ["Amanieu d'Antras <[email protected]>"] 17description = "More compact and efficient implementations of the standard synchronization primitives." 18readme = "README.md" 19keywords = [ 20 "mutex", 21 "condvar", 22 "rwlock", 23 "once", 24 "thread", 25] 26categories = ["concurrency"] 27license = "MIT OR Apache-2.0" 28repository = "https://github.com/Amanieu/parking_lot" 29 30[dependencies.lock_api] 31version = "0.4.6" 32 33[dependencies.parking_lot_core] 34version = "0.9.0" 35 36[dev-dependencies.bincode] 37version = "1.3.3" 38 39[dev-dependencies.rand] 40version = "0.8.3" 41 42[features] 43arc_lock = ["lock_api/arc_lock"] 44deadlock_detection = ["parking_lot_core/deadlock_detection"] 45default = [] 46hardware-lock-elision = [] 47nightly = [ 48 "parking_lot_core/nightly", 49 "lock_api/nightly", 50] 51owning_ref = ["lock_api/owning_ref"] 52send_guard = [] 53serde = ["lock_api/serde"] 54