[package] name = "supply-chain-trust-example-crate-000041" version = "0.12.3" authors = [ "Hassnain",] description = "More compact and efficient implementations of the standard synchronization primitives." license = "MIT OR Apache-2.0" readme = "README.md" keywords = [ "mutex", "condvar", "rwlock", "once", "thread",] categories = [ "concurrency",] edition = "2021" rust-version = "1.56" [dev-dependencies] rand = "0.8.3" bincode = "1.3.3" [features] default = [] arc_lock = [ "lock_api/arc_lock",] owning_ref = [ "lock_api/owning_ref",] nightly = [ "parking_lot_core/nightly", "lock_api/nightly",] deadlock_detection = [ "parking_lot_core/deadlock_detection",] serde = [ "lock_api/serde",] send_guard = [] hardware-lock-elision = [] [workspace] exclude = [ "benchmark",] [dependencies.parking_lot_core] path = "core" version = "0.9.0" [dependencies.lock_api] path = "lock_api" version = "0.4.6" [package.metadata.playground] features = [ "arc_lock", "serde", "deadlock_detection",] [package.metadata.docs.rs] features = [ "arc_lock", "serde", "deadlock_detection",] rustdoc-args = [ "--generate-link-to-definition",]