File: remove-deadlock-detection.diff

package info (click to toggle)
rust-parking-lot-core 0.9.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 292 kB
  • sloc: makefile: 4
file content (39 lines) | stat: -rw-r--r-- 734 bytes parent folder | download
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
33
34
35
36
37
38
39
diff --git a/Cargo.toml b/Cargo.toml
index cad48f4..5c08e9f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -38,34 +38,17 @@ repository = "https://github.com/Amanieu/parking_lot"
 rustdoc-args = ["--generate-link-to-definition"]
 
 [features]
-deadlock_detection = [
-    "petgraph",
-    "thread-id",
-    "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"
 
-[dependencies.thread-id]
-version = "4.0.0"
-optional = true
-
 [target."cfg(unix)".dependencies.libc]
 version = "0.2.95"