-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
47 lines (40 loc) · 1.02 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
[package]
name = "preflate-rs"
version = "0.6.2"
edition = "2021"
authors = ["Kristof Roomp <[email protected]>"]
license = "Apache-2.0"
rust-version = "1.70"
description = """
Decompresses existing DEFLATE streams to allow for better compression (eg with ZStandard) while
allowing the exact original binary DEFLATE stream to be recreated by detecting the parameters
used during compression.
"""
readme = "README.md"
repository = "https://github.com/microsoft/preflate-rs"
categories = ["compression"]
keywords = ["gzip", "deflate", "zlib", "zip"]
exclude = [
"samples/*",
"tests/*",
"util/*",
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug=true
[dependencies]
byteorder = "1.4"
cabac = "0.6.0"
default-boxed = "0.2"
zstd = "0.13.0"
crc32fast = "1.3"
[dev-dependencies]
libz-sys = "1.1"
libdeflate-sys = "1.19"
libz-ng-sys="1.1.12"
miniz_oxide="0.7.1"
[lib]
crate-type = ["cdylib","lib"]
[[bin]]
name = "preflate_util"
path = "src/main.rs"