Codebase list rust-stfu8 / 0844d59
reenable backtrace feature in parking_lot_core Alexander Kjäll 1 year, 7 months ago
5 changed file(s) with 23 addition(s) and 27 deletion(s). Raw diff Collapse all Expand all
0 reenabled backtrace, as the lack of it seem to cause problem in parking_lot
0 rust-parking-lot-core (0.9.3-2) UNRELEASED-FIXME-AUTOGENERATED-DEBCARGO; urgency=medium
1
2 * Team upload.
3 * Package parking_lot_core 0.9.3 from crates.io using debcargo 2.5.0
4 * Reenable the backtrace feature
5
6 -- Alexander Kjäll <alexander.kjall@gmail.com> Sun, 02 Oct 2022 09:40:33 +0200
7
08 rust-parking-lot-core (0.9.3-1) unstable; urgency=medium
19
210 * Team upload.
+0
-26
src/parking-lot-core/debian/patches/disable-backtrace.diff less more
0 tIndex: parking-lot-core/Cargo.toml
1 ===================================================================
2 --- a/Cargo.toml
3 +++ b/Cargo.toml
4 @@ -26,9 +26,9 @@
5 license = "MIT OR Apache-2.0"
6 repository = "https://github.com/Amanieu/parking_lot"
7
8 -[dependencies.backtrace]
9 -version = "0.3.60"
10 -optional = true
11 +#[dependencies.backtrace]
12 +#version = "0.3.60"
13 +#optional = true
14
15 [dependencies.cfg-if]
16 version = "1.0.0"
17 @@ -48,7 +48,7 @@
18 deadlock_detection = [
19 "petgraph",
20 "thread-id",
21 - "backtrace",
22 + #"backtrace",
23 ]
24 nightly = []
25
0 diff --git a/Cargo.toml b/Cargo.toml
1 index e41d5ec..922c1b3 100644
2 --- a/Cargo.toml
3 +++ b/Cargo.toml
4 @@ -27,7 +27,7 @@ license = "MIT OR Apache-2.0"
5 repository = "https://github.com/Amanieu/parking_lot"
6
7 [dependencies.backtrace]
8 -version = "0.3.60"
9 +version = "0.3"
10 optional = true
11
12 [dependencies.cfg-if]
0 disable-backtrace.diff
10 remove-unused-deps.diff
1 relax-backtrace-dep.patch