blob: c78888f7b6b1965bcb399b860a9702ed4eb9a609 [file] [log] [blame]
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +02001# 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"
Haibo Huang38593b52020-11-17 19:13:09 -080016version = "0.11.1"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020017authors = ["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"
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020024[dependencies.instant]
25version = "0.1.4"
26
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020027[dependencies.lock_api]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020028version = "0.4.0"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020029
30[dependencies.parking_lot_core]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020031version = "0.8.0"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020032[dev-dependencies.bincode]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020033version = "1.3.0"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020034
35[dev-dependencies.rand]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020036version = "0.7.3"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020037
38[features]
39deadlock_detection = ["parking_lot_core/deadlock_detection"]
40default = []
41nightly = ["parking_lot_core/nightly", "lock_api/nightly"]
42owning_ref = ["lock_api/owning_ref"]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020043send_guard = []
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020044serde = ["lock_api/serde"]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020045stdweb = ["instant/stdweb"]
46wasm-bindgen = ["instant/wasm-bindgen"]