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