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
|
From: Agathe Porte <gagath@debian.org>
Date: Mon, 16 Sep 2024 13:46:45 +0200
Subject: Remove unwinding feature
The unwinding crate is not yet packaged in Debian.
Forwarded: not-needed
---
Cargo.toml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 730e6be..e680d06 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -27,9 +27,6 @@ crate-type = ["cdylib"]
[features]
default = []
-# Avoid bundling libgcc on musl.
-unwind = ["unwinding"]
-
# Build yyjson as a backend and panic if it fails. The default is to attempt
# to build and on failure fall back to another backend.
yyjson = []
@@ -58,7 +55,6 @@ serde = { version = "1", default-features = false }
serde_json = { version = "1", default-features = false, features = ["std", "float_roundtrip"] }
simdutf8 = { version = "0.1", default-features = false, features = ["std", "public_imp", "aarch64_neon"] }
smallvec = { version = "^1.11", default-features = false, features = ["union", "write"] }
-unwinding = { version = "=0.2.8", default-features = false, features = ["unwinder"], optional = true }
uuid = { version = "1", default-features = false }
xxhash-rust = { version = "^0.8", default-features = false, features = ["xxh3"] }
|