File: remove-unavailable-features.diff

package info (click to toggle)
rust-zstd-sys 2.0.13-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: ansic: 57; makefile: 4
file content (29 lines) | stat: -rw-r--r-- 774 bytes parent folder | download | duplicates (2)
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
Description: Remove unavailable features
 As we use Debian packaged libzstd not the bundled, some features are
 not (can not be) enabled at build time and unavailable, or made no-op:
 - debug, fat-lto, no_asm, thin, thin-lto: only useful with bundled zstd
 - zstdmt: deprecated, upstream hidden by default
 - legacy: Debian package has it on
 - pkg-config: always used
 - std: no-op with use-std-c-ffi.patch
Last-Update: 2023-11-27
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -63,3 +63,2 @@
 [features]
-debug = []
 default = [
@@ -69,5 +68,3 @@
 experimental = []
-fat-lto = []
 legacy = []
-no_asm = []
 no_wasm_shim = []
@@ -76,5 +73,2 @@
 std = []
-thin = []
-thin-lto = []
 zdict_builder = []
-zstdmt = []