blob: f8c9c249415f1ef599e7317cdca59755c5f15629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# 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 are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
name = "brotli"
version = "3.4.0"
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."
homepage = "https://github.com/dropbox/rust-brotli"
documentation = "https://docs.rs/brotli/"
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
incremental = false
[[bin]]
name = "brotli"
doc = false
[[bin]]
name = "catbrotli"
doc = false
[dependencies.alloc-no-stdlib]
version = "2.0"
[dependencies.alloc-stdlib]
version = "~0.2"
optional = true
[dependencies.brotli-decompressor]
version = "~2.5"
default-features = false
[dependencies.sha2]
version = "~0.10"
optional = true
[features]
benchmark = ["brotli-decompressor/benchmark"]
default = [
"std",
"ffi-api",
]
disable-timer = ["brotli-decompressor/disable-timer"]
external-literal-probability = []
ffi-api = []
pass-through-ffi-panics = []
seccomp = ["brotli-decompressor/seccomp"]
std = [
"alloc-stdlib",
"brotli-decompressor/std",
]
validation = ["sha2"]
vector_scratch_space = []
|