[package]
edition = "2018"
rust-version = "1.64"
name = "zstd-safe"
version = "8.0.0"
authors = ["Alexandre Bury <alexandre.bury@gmail.com>"]
build = "build.rs"
exclude = ["update_consts.sh"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Safe low-level bindings for the zstd compression library."
readme = "Readme.md"
keywords = [
"zstd",
"zstandard",
"compression",
]
categories = [
"api-bindings",
"compression",
]
license = "BSD-3-Clause"
repository = "https://github.com/gyscos/zstd-rs"
[package.metadata.docs.rs]
features = [
"experimental",
"arrays",
"std",
"zdict_builder",
"doc-cfg",
]
[features]
arrays = []
bindgen = ["zstd-sys/bindgen"]
cmake = ["zstd-sys/cmake"]
debug = ["zstd-sys/debug"]
default = [
"legacy",
"arrays",
"zdict_builder",
]
doc-cfg = []
experimental = ["zstd-sys/experimental"]
fat-lto = ["zstd-sys/fat-lto"]
legacy = ["zstd-sys/legacy"]
no_asm = ["zstd-sys/no_asm"]
pkg-config = ["zstd-sys/pkg-config"]
seekable = ["zstd-sys/seekable"]
std = ["zstd-sys/std"]
thin = ["zstd-sys/thin"]
thin-lto = ["zstd-sys/thin-lto"]
vendored = ["zstd-sys/vendored"]
zdict_builder = ["zstd-sys/zdict_builder"]
zstdmt = ["zstd-sys/zstdmt"]
[lib]
name = "zstd_safe"
path = "src/lib.rs"
[dependencies.zstd-sys]
version = "2.1.0"
default-features = false
[lints.rust]
non_upper_case_globals = "allow"