structured-zstd 0.0.41

Pure Rust zstd implementation — managed fork of ruzstd. Dictionary decompression, no FFI.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.92"
name = "structured-zstd"
version = "0.0.41"
authors = [
    "Moritz Borcherding <moritz.borcherding@web.de>",
    "Structured World Foundation <foundation@sw.foundation>",
]
build = false
exclude = [
    "fuzz_decodecorpus/*",
    "decodecorpus_files/*",
    "dict_tests/files/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust zstd implementation — managed fork of ruzstd. Dictionary decompression, no FFI."
homepage = "https://github.com/structured-world/structured-zstd"
readme = "README.md"
keywords = [
    "zstd",
    "zstandard",
    "decompression",
    "compression",
    "pure-rust",
]
categories = ["compression"]
license = "Apache-2.0"
repository = "https://github.com/structured-world/structured-zstd"

[package.metadata.docs.rs]
features = [
    "std",
    "hash",
    "dict_builder",
    "lsm",
]
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
bench_internals = []
copy_shape_stats = ["std"]
critical-section = ["dep:critical-section"]
default = [
    "hash",
    "std",
    "kernel_scalar",
    "kernel_sse2",
    "kernel_bmi2",
    "kernel_avx2",
    "kernel_vbmi2",
    "kernel_neon",
    "kernel_sve",
    "kernel_simd128",
]
dhat-heap = []
dict_builder = [
    "std",
    "dep:fastrand",
]
fuzz_exports = []
hash = ["dep:twox-hash"]
kernel_avx2 = ["kernel_bmi2"]
kernel_bmi2 = ["kernel_sse2"]
kernel_neon = []
kernel_scalar = []
kernel_simd128 = []
kernel_sse2 = []
kernel_sve = ["kernel_neon"]
kernel_trace = ["std"]
kernel_vbmi2 = ["kernel_avx2"]
lsm = []
rustc-dep-of-std = [
    "dep:compiler_builtins",
    "dep:core",
    "dep:alloc",
]
std = []

[lib]
name = "structured_zstd"
path = "src/lib.rs"

[dependencies.alloc]
version = "1.0.0"
optional = true
package = "rustc-std-workspace-alloc"

[dependencies.compiler_builtins]
version = "0.1.2"
optional = true

[dependencies.core]
version = "1.0.0"
optional = true
package = "rustc-std-workspace-core"

[dependencies.critical-section]
version = "1.2"
optional = true

[dependencies.fastrand]
version = "2.3.0"
optional = true

[dependencies.twox-hash]
version = "2.0"
features = ["xxhash64"]
optional = true
default-features = false

[dev-dependencies.rand]
version = "0.10"