-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
36 lines (31 loc) · 887 Bytes
/
Cargo.toml
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
[package]
name = "brotlic"
version = "0.8.2"
edition = "2021"
authors = ["Aron Parker <hl3mukkel@gmail.com>", "The Brotli Authors"]
description = """
Bindings to the brotli library featuring a low-overhead encoder and decoder,
io::Write and io::Read wrappers for compression and decompression at customizable compression
qualities and window sizes.
"""
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/brotlic"
repository = "https://github.com/AronParker/brotlic"
keywords = ["brotli", "compression", "decompression"]
categories = ["compression", "api-bindings"]
readme = "README.md"
[dependencies]
brotlic-sys = { version = "0.2.0", path = "brotlic-sys" }
[dev-dependencies]
brotli = "3.3.4"
rand = "0.8.5"
criterion = "0.4.0"
rand_pcg = "0.3.1"
clap = "4.0.23"
[lib]
bench=false
[[bench]]
name = "compression"
harness = false
[workspace]
members = [ "brotlic-sys" ]