rust-zstd 0.1.0

Pure Rust Zstandard codec — compress + decompress, zero external dependencies
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 = "2021"
name = "rust-zstd"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Pure Rust Zstandard codec — compress + decompress, zero external dependencies"
readme = "README.md"
keywords = [
    "zstd",
    "zstandard",
    "compression",
    "decompression",
    "lz77",
]
categories = ["compression"]
license = "BSD-3-Clause AND MIT"
repository = "https://github.com/physwkim/rust-zstd"

[features]
default = ["parallel"]
parallel = ["rayon"]

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

[[test]]
name = "zstd_fse_debug"
path = "tests/zstd_fse_debug.rs"

[[test]]
name = "zstd_ratio"
path = "tests/zstd_ratio.rs"

[[test]]
name = "zstd_speed"
path = "tests/zstd_speed.rs"

[[test]]
name = "zstd_vs_c"
path = "tests/zstd_vs_c.rs"

[dependencies.rayon]
version = "1"
optional = true

[dev-dependencies]