brotli 6.0.0

A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe.
Documentation
[[bin]]
doc = false
name = "brotli"

[[bin]]
doc = false
name = "catbrotli"
[dependencies.alloc-no-stdlib]
version = "2.0"

[dependencies.alloc-stdlib]
optional = true
version = "~0.2"

[dependencies.brotli-decompressor]
default-features = false
version = "~4.0"

[dependencies.sha2]
optional = true
version = "~0.10"

[features]
benchmark = ["brotli-decompressor/benchmark"]
default = ["std"]
disable-timer = ["brotli-decompressor/disable-timer"]
external-literal-probability = []
ffi-api = ["brotli-decompressor/ffi-api"]
pass-through-ffi-panics = []
seccomp = ["brotli-decompressor/seccomp"]
simd = []
std = ["alloc-stdlib", "brotli-decompressor/std"]
validation = ["sha2"]
vector_scratch_space = []

[package]
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
autobins = false
categories = ["compression", "no-std"]
description = "A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe."
documentation = "https://docs.rs/brotli/"
edition = "2015"
homepage = "https://github.com/dropbox/rust-brotli"
keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
license = "BSD-3-Clause OR MIT"
name = "brotli"
readme = "README.md"
repository = "https://github.com/dropbox/rust-brotli"
rust-version = "1.56.0"
version = "6.0.0"
[profile.release]
incremental = false
lto = true