1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
diff --git a/Cargo.toml b/Cargo.toml
index cad48f4..5c08e9f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,27 +38,15 @@ repository = "https://github.com/Amanieu/parking_lot"
rustdoc-args = ["--generate-link-to-definition"]
[features]
-deadlock_detection = [
- "petgraph",
- "backtrace",
-]
nightly = []
[lib]
name = "parking_lot_core"
path = "src/lib.rs"
-[dependencies.backtrace]
-version = "0.3.60"
-optional = true
-
[dependencies.cfg-if]
version = "1.0.0"
-[dependencies.petgraph]
-version = "0.6.0"
-optional = true
-
[dependencies.smallvec]
version = "1.6.1"
|