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 believe there's an error in this file please file an 9# issue against the rust-lang/cargo repository. If you're 10# editing this file be aware that the upstream Cargo.toml 11# will likely look very different (and much more reasonable) 12 13[package] 14edition = "2018" 15name = "parking_lot" 16version = "0.11.1" 17authors = ["Amanieu d'Antras <amanieu@gmail.com>"] 18description = "More compact and efficient implementations of the standard synchronization primitives." 19readme = "README.md" 20keywords = ["mutex", "condvar", "rwlock", "once", "thread"] 21categories = ["concurrency"] 22license = "Apache-2.0/MIT" 23repository = "https://github.com/Amanieu/parking_lot" 24[dependencies.instant] 25version = "0.1.4" 26 27[dependencies.lock_api] 28version = "0.4.0" 29 30[dependencies.parking_lot_core] 31version = "0.8.0" 32[dev-dependencies.bincode] 33version = "1.3.0" 34 35[dev-dependencies.rand] 36version = "0.7.3" 37 38[features] 39deadlock_detection = ["parking_lot_core/deadlock_detection"] 40default = [] 41nightly = ["parking_lot_core/nightly", "lock_api/nightly"] 42owning_ref = ["lock_api/owning_ref"] 43send_guard = [] 44serde = ["lock_api/serde"] 45stdweb = ["instant/stdweb"] 46wasm-bindgen = ["instant/wasm-bindgen"] 47