blob: 6f58afa951e14773fc7f6be35a203f5f9ff9d4b1 [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
Joel Galenson875833a2021-09-22 11:13:12 -07006# to registry (e.g., crates.io) dependencies.
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +02007#
Joel Galenson875833a2021-09-22 11:13:12 -07008# 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.
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020011
12[package]
13edition = "2018"
14name = "parking_lot"
David LeGare468e33c2022-03-02 16:21:12 +000015version = "0.12.0"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020016authors = ["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]
David LeGare468e33c2022-03-02 16:21:12 +000024version = "0.4.6"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020025
26[dependencies.parking_lot_core]
David LeGare468e33c2022-03-02 16:21:12 +000027version = "0.9.0"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020028[dev-dependencies.bincode]
Joel Galenson875833a2021-09-22 11:13:12 -070029version = "1.3.3"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020030
31[dev-dependencies.rand]
Joel Galenson875833a2021-09-22 11:13:12 -070032version = "0.8.3"
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020033
34[features]
Joel Galenson875833a2021-09-22 11:13:12 -070035arc_lock = ["lock_api/arc_lock"]
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020036deadlock_detection = ["parking_lot_core/deadlock_detection"]
37default = []
David LeGare468e33c2022-03-02 16:21:12 +000038hardware-lock-elision = []
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020039nightly = ["parking_lot_core/nightly", "lock_api/nightly"]
40owning_ref = ["lock_api/owning_ref"]
Jeff Vander Stoep16823f42020-10-21 21:50:55 +020041send_guard = []
Jeff Vander Stoepc9a7dc02020-10-14 15:07:49 +020042serde = ["lock_api/serde"]