• 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"
14rust-version = "1.49.0"
15name = "parking_lot_core"
16version = "0.9.9"
17authors = ["Amanieu d'Antras <amanieu@gmail.com>"]
18description = "An advanced API for creating custom synchronization primitives."
19keywords = [
20    "mutex",
21    "condvar",
22    "rwlock",
23    "once",
24    "thread",
25]
26categories = ["concurrency"]
27license = "MIT OR Apache-2.0"
28repository = "https://github.com/Amanieu/parking_lot"
29
30[package.metadata.docs.rs]
31rustdoc-args = ["--generate-link-to-definition"]
32
33[dependencies.backtrace]
34version = "0.3.60"
35optional = true
36
37[dependencies.cfg-if]
38version = "1.0.0"
39
40[dependencies.petgraph]
41version = "0.6.0"
42optional = true
43
44[dependencies.smallvec]
45version = "1.6.1"
46
47[dependencies.thread-id]
48version = "4.0.0"
49optional = true
50
51[features]
52deadlock_detection = [
53    "petgraph",
54    "thread-id",
55    "backtrace",
56]
57nightly = []
58
59[target."cfg(target_os = \"redox\")".dependencies.redox_syscall]
60version = "0.4"
61
62[target."cfg(unix)".dependencies.libc]
63version = "0.2.95"
64
65[target."cfg(windows)".dependencies.windows-targets]
66version = "0.48.0"
67