]> git.proxmox.com Git - rustc.git/blob - vendor/parking_lot-0.11.2/Cargo.toml
New upstream version 1.60.0+dfsg1
[rustc.git] / vendor / parking_lot-0.11.2 / Cargo.toml
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]
13 edition = "2018"
14 name = "parking_lot"
15 version = "0.11.2"
16 authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
17 description = "More compact and efficient implementations of the standard synchronization primitives."
18 readme = "README.md"
19 keywords = ["mutex", "condvar", "rwlock", "once", "thread"]
20 categories = ["concurrency"]
21 license = "Apache-2.0/MIT"
22 repository = "https://github.com/Amanieu/parking_lot"
23 [dependencies.instant]
24 version = "0.1.9"
25
26 [dependencies.lock_api]
27 version = "0.4.5"
28
29 [dependencies.parking_lot_core]
30 version = "0.8.4"
31 [dev-dependencies.bincode]
32 version = "1.3.3"
33
34 [dev-dependencies.rand]
35 version = "0.8.3"
36
37 [features]
38 arc_lock = ["lock_api/arc_lock"]
39 deadlock_detection = ["parking_lot_core/deadlock_detection"]
40 default = []
41 nightly = ["parking_lot_core/nightly", "lock_api/nightly"]
42 owning_ref = ["lock_api/owning_ref"]
43 send_guard = []
44 serde = ["lock_api/serde"]
45 stdweb = ["instant/stdweb"]
46 wasm-bindgen = ["instant/wasm-bindgen"]