brotli-decompressor 2.3.5

A brotli 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. Alternatively, --features=unsafe turns off array bounds checks and memory initialization but provides a safe interface for the caller. Without adding the --features=unsafe argument, all included code is safe. For compression in addition to this library, download https://github.com/dropbox/rust-brotli
Documentation
[[bin]]
doc = false
name = "brotli-decompressor"
[dependencies.alloc-no-stdlib]
version = "~2.0"

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

[features]
benchmark = []
default = ["std"]
disable-timer = []
pass-through-ffi-panics = []
seccomp = []
std = ["alloc-stdlib"]
unsafe = ["alloc-no-stdlib/unsafe", "alloc-stdlib/unsafe"]

[package]
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
autobins = false
description = "A brotli 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. Alternatively, --features=unsafe turns off array bounds checks and memory initialization but provides a safe interface for the caller.  Without adding the --features=unsafe argument, all included code is safe. For compression in addition to this library, download https://github.com/dropbox/rust-brotli "
documentation = "https://github.com/dropbox/rust-brotli-decompressor/blob/master/README.md"
exclude = ["testdata/*"]
homepage = "https://github.com/dropbox/rust-brotli-decompressor"
keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
license = "BSD-3-Clause/MIT"
name = "brotli-decompressor"
readme = "README.md"
repository = "https://github.com/dropbox/rust-brotli-decompressor"
version = "2.3.5"
[profile.release]
incremental = false
lto = true