[package]
edition = "2024"
rust-version = "1.85"
name = "libzstd-bitexact-rs"
version = "0.157.0"
build = false
exclude = [
"/.github",
"/CLAUDE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure-Rust reimplementation of Zstandard, aiming for bit-exact parity with the C libzstd"
documentation = "https://docs.rs/libzstd-bitexact-rs"
readme = "README.md"
keywords = [
"zstd",
"zstandard",
"compression",
"decompression",
]
categories = ["compression"]
license = "BSD-3-Clause"
repository = "https://github.com/danifunker/libzstd-bitexact-rs"
[lib]
name = "libzstd_bitexact_rs"
path = "src/lib.rs"
[[example]]
name = "demo"
path = "examples/demo.rs"
[[test]]
name = "cdict_compress_differential"
path = "tests/cdict_compress_differential.rs"
[[test]]
name = "compress_differential"
path = "tests/compress_differential.rs"
[[test]]
name = "cparams_differential"
path = "tests/cparams_differential.rs"
[[test]]
name = "dict_compress_differential"
path = "tests/dict_compress_differential.rs"
[[test]]
name = "dictionary"
path = "tests/dictionary.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "error_parity"
path = "tests/error_parity.rs"
[[test]]
name = "format"
path = "tests/format.rs"
[[test]]
name = "fuzz_smoke"
path = "tests/fuzz_smoke.rs"
[[test]]
name = "long_distance"
path = "tests/long_distance.rs"
[[test]]
name = "mt_compress_differential"
path = "tests/mt_compress_differential.rs"
[[test]]
name = "mt_stream_compress_differential"
path = "tests/mt_stream_compress_differential.rs"
[[test]]
name = "stream_compress_differential"
path = "tests/stream_compress_differential.rs"
[[test]]
name = "stream_dict_compress_differential"
path = "tests/stream_dict_compress_differential.rs"
[[test]]
name = "streaming"
path = "tests/streaming.rs"
[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false
[dependencies]
[dev-dependencies.zstd]
version = "0.13"
features = ["zstdmt"]
[dev-dependencies.zstd-sys]
version = "2.0.16"
features = [
"experimental",
"std",
]
default-features = false
[profile.dev]
opt-level = 1