brotli 1.0.9

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. All included code is safe.
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 believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "brotli"
version = "1.0.9"
authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
exclude = ["src/bin/testdata/*"]
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. All included code is safe."
homepage = "https://github.com/dropbox/rust-brotli"
documentation = "https://github.com/dropbox/rust-brotli/blob/master/README.md"
readme = "README.md"
keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
license = "BSD-3-Clause/MIT"
repository = "https://github.com/dropbox/rust-brotli"
[profile.release]
lto = true

[[bin]]
name = "brotli"
doc = false
[dependencies.alloc-no-stdlib]
version = "~1.2"

[dependencies.brotli-decompressor]
version = "~1"

[features]
benchmark = ["brotli-decompressor/benchmark"]
disable-timer = ["brotli-decompressor/disable-timer"]
external-literal-probability = []
float64 = []
no-stdlib = ["alloc-no-stdlib/no-stdlib", "brotli-decompressor/no-stdlib"]
seccomp = ["brotli-decompressor/seccomp"]
vector_scratch_space = []