Bug 1825052 [wpt PR 39246] - Update wpt metadata, a=testonly
[gecko.git] / third_party / rust / parking_lot_core / Cargo.toml
blob6981516440b7a6ac2ef7d40ac553100f312b4dd9
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
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.
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.
12 [package]
13 edition = "2018"
14 name = "parking_lot_core"
15 version = "0.8.6"
16 authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
17 description = "An advanced API for creating custom synchronization primitives."
18 keywords = [
19     "mutex",
20     "condvar",
21     "rwlock",
22     "once",
23     "thread",
25 categories = ["concurrency"]
26 license = "Apache-2.0/MIT"
27 repository = "https://github.com/Amanieu/parking_lot"
29 [dependencies.backtrace]
30 version = "0.3.60"
31 optional = true
33 [dependencies.cfg-if]
34 version = "1.0.0"
36 [dependencies.instant]
37 version = "0.1.9"
39 [dependencies.petgraph]
40 version = "0.5.1"
41 optional = true
43 [dependencies.smallvec]
44 version = "1.6.1"
46 [dependencies.thread-id]
47 version = "4.0.0"
48 optional = true
50 [features]
51 deadlock_detection = [
52     "petgraph",
53     "thread-id",
54     "backtrace",
56 nightly = []
58 [target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
59 version = "0.2.8"
61 [target."cfg(unix)".dependencies.libc]
62 version = "0.2.95"
64 [target."cfg(windows)".dependencies.winapi]
65 version = "0.3.9"
66 features = [
67     "winnt",
68     "ntstatus",
69     "minwindef",
70     "winerror",
71     "winbase",
72     "errhandlingapi",
73     "handleapi",