1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies
7#
8# If you believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14name = "brotli"
15version = "3.3.2"
16authors = ["Daniel Reiter Horn <danielrh@dropbox.com>", "The Brotli Authors"]
17autobins = false
18description = "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."
19homepage = "https://github.com/dropbox/rust-brotli"
20documentation = "https://docs.rs/brotli/"
21readme = "README.md"
22keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]
23license = "BSD-3-Clause/MIT"
24repository = "https://github.com/dropbox/rust-brotli"
25[profile.release]
26lto = true
27incremental = false
28
29[[bin]]
30name = "brotli"
31doc = false
32
33[[bin]]
34name = "catbrotli"
35doc = false
36[dependencies.alloc-no-stdlib]
37version = "2.0"
38
39[dependencies.alloc-stdlib]
40version = "~0.2"
41optional = true
42
43[dependencies.brotli-decompressor]
44version = "~2.3"
45default-features = false
46
47[dependencies.packed_simd]
48version = "0.3"
49optional = true
50
51[dependencies.sha2]
52version = "~0.8"
53optional = true
54
55[features]
56benchmark = ["brotli-decompressor/benchmark"]
57default = ["std", "ffi-api"]
58disable-timer = ["brotli-decompressor/disable-timer"]
59external-literal-probability = []
60ffi-api = []
61pass-through-ffi-panics = []
62seccomp = ["brotli-decompressor/seccomp"]
63simd = ["packed_simd/into_bits"]
64std = ["alloc-stdlib", "brotli-decompressor/std"]
65validation = ["sha2"]
66vector_scratch_space = []
67