[package]
edition = "2021"
rust-version = "1.85"
name = "rusty_zstd"
version = "0.1.0"
authors = ["Mata Network <https://www.mata.network>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A ground-up, pure-Rust Zstandard (RFC 8878) compressor and decompressor. Levels -7..22 with all nine libzstd strategies, dictionaries + trainer, long-distance matching, seekable frames, multi-threading. Interoperable both directions with facebook/zstd v1.5.7, dual-gated per commit. Zero dependencies, no C, no *-sys, no FFI; builds on no_std + alloc and wasm32. MIT OR Apache-2.0."
homepage = "https://www.mata.network/remade-with-rust"
documentation = "https://docs.rs/rusty_zstd"
readme = "README.md"
keywords = [
"zstd",
"zstandard",
"compression",
"codec",
"no-std",
]
categories = [
"compression",
"encoding",
"no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/rusty_zstd"
[package.metadata.docs.rs]
all-features = false
[features]
alloc = []
default = ["std"]
dupladder = ["profile"]
legacy = ["std"]
mt = ["std"]
profile = ["std"]
seekable = ["std"]
std = ["alloc"]
train = ["std"]
[lib]
name = "rusty_zstd"
path = "src/lib.rs"
[[example]]
name = "census"
path = "examples/census.rs"
[[example]]
name = "cksumprobe"
path = "examples/cksumprobe.rs"
[[test]]
name = "c_cross"
path = "tests/c_cross.rs"
[[test]]
name = "c_dict"
path = "tests/c_dict.rs"
[[test]]
name = "c_encode"
path = "tests/c_encode.rs"
[[test]]
name = "c_m5"
path = "tests/c_m5.rs"
[[test]]
name = "c_m6"
path = "tests/c_m6.rs"
[lints.clippy]
too_many_arguments = "allow"
type_complexity = "allow"
[lints.rust]
missing_docs = "allow"
unsafe_op_in_unsafe_fn = "deny"