[[bench]]
harness = false
name = "compress"
path = "benches/compress.rs"
[[bench]]
harness = false
name = "decompress"
path = "benches/decompress.rs"
[dependencies.zstd-safe]
features = ["std"]
version = "7.2.4"
[dev-dependencies.criterion]
version = "0.8.1"
[dev-dependencies.proptest]
version = "1.9.0"
[dev-dependencies.zstd]
version = "0.13.3"
[dev-dependencies.zstd-safe]
features = ["std", "seekable"]
version = "7.2.4"
[features]
default = ["std"]
std = ["zstd-safe/std"]
[lib]
name = "zeekstd"
path = "src/lib.rs"
[lints.clippy]
cast-lossless = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
struct-excessive-bools = "allow"
[lints.clippy.pedantic]
level = "deny"
priority = -1
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["compression"]
description = "Rust implementation of the Zstandard Seekable Format."
edition = "2024"
homepage = "https://github.com/rorosen/zeekstd"
keywords = ["zstd", "zstandard", "compression", "zstd-seekable-format"]
license = "BSD-2-Clause"
name = "zeekstd"
readme = "README.md"
repository = "https://github.com/rorosen/zeekstd"
resolver = "2"
version = "0.6.2"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]