[[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 = "~2.1"
[dependencies.packed_simd]
optional = true
version = "0.3"
[dependencies.sha2]
optional = true
version = "~0.8"
[features]
benchmark = ["brotli-decompressor/benchmark"]
default = ["std"]
disable-timer = ["brotli-decompressor/disable-timer"]
external-literal-probability = []
pass-through-ffi-panics = []
seccomp = ["brotli-decompressor/seccomp"]
simd = ["packed_simd/into_bits"]
std = ["alloc-stdlib", "brotli-decompressor/std"]
validation = ["sha2"]
vector_scratch_space = []
[package]
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
autobins = false
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://github.com/dropbox/rust-brotli/blob/master/README.md"
homepage = "https://github.com/dropbox/rust-brotli"
keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
license = "BSD-3-Clause/MIT"
name = "brotli"
readme = "README.md"
repository = "https://github.com/dropbox/rust-brotli"
version = "3.1.3"
[profile.release]
lto = true