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
|
Description: Remove unavailable features
As we use Debian packaged libzstd instead of building the bundled,
such features are not enabled at build time and unavailable.
Last-Update: 2022-09-07
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -60,21 +60,15 @@
[features]
arrays = ["zstd-safe/arrays"]
bindgen = ["zstd-safe/bindgen"]
-debug = ["zstd-safe/debug"]
default = [
- "legacy",
"arrays",
"zdict_builder",
]
doc-cfg = []
experimental = ["zstd-safe/experimental"]
-legacy = ["zstd-safe/legacy"]
-no_asm = ["zstd-safe/no_asm"]
pkg-config = ["zstd-safe/pkg-config"]
-thin = ["zstd-safe/thin"]
wasm = []
zdict_builder = ["zstd-safe/zdict_builder"]
-zstdmt = ["zstd-safe/zstdmt"]
[badges.travis-ci]
repository = "gyscos/zstd-rs"
|