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
|
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(-)
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -29,9 +29,6 @@
[features]
default = []
-# Avoid bundling libgcc on musl.
-unwind = ["unwinding"]
-
# Features detected by build.rs. Do not specify.
avx512 = []
cold_path = []
@@ -55,7 +52,6 @@
serde_json = { version = "1", default-features = false, features = ["std"] }
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"] }
|