• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.0"
16authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
17description = "More compact and efficient implementations of the standard synchronization primitives."
18readme = "README.md"
19keywords = ["mutex", "condvar", "rwlock", "once", "thread"]
20categories = ["concurrency"]
21license = "Apache-2.0/MIT"
22repository = "https://github.com/Amanieu/parking_lot"
23[dependencies.lock_api]
24version = "0.4.6"
25
26[dependencies.parking_lot_core]
27version = "0.9.0"
28[dev-dependencies.bincode]
29version = "1.3.3"
30
31[dev-dependencies.rand]
32version = "0.8.3"
33
34[features]
35arc_lock = ["lock_api/arc_lock"]
36deadlock_detection = ["parking_lot_core/deadlock_detection"]
37default = []
38hardware-lock-elision = []
39nightly = ["parking_lot_core/nightly", "lock_api/nightly"]
40owning_ref = ["lock_api/owning_ref"]
41send_guard = []
42serde = ["lock_api/serde"]
43