forked from matzefriedrich/zip-extensions-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
55 lines (53 loc) · 1.23 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
48
49
50
51
52
53
54
55
[package]
name = "zip-extensions"
version = "0.8.0"
authors = ["Matthias Friedrich <[email protected]>"]
edition = "2021"
description = "An extension crate for zip."
readme = "README.md"
repository = "https://github.com/matzefriedrich/zip-extensions-rs"
license = "MIT"
keywords = ["zip", "archive"]
exclude = [
"**/*.yml",
"**/*.json",
".gitignore"
]
[dependencies]
zip = { version = "2.1", default-features = false }
[features]
aes-crypto = ["zip/aes-crypto" ]
chrono = ["zip/chrono"]
deflate = ["zip/deflate"]
deflate-flate2 = ["zip/deflate-flate2"]
deflate-miniz = ["zip/deflate-miniz"]
deflate-zlib = ["zip/deflate-zlib"]
deflate-zlib-ng = ["zip/deflate-zlib-ng"]
deflate-zopfli = ["zip/deflate-zopfli"]
lzma = ["zip/lzma"]
unreserved = ["zip/unreserved"]
xz = ["zip/xz"]
bzip2 = ["zip/bzip2"]
deflate64 = ["zip/deflate64"]
time = ["zip/time"]
zstd = ["zip/zstd"]
aes = ["zip/aes"]
constant_time_eq = ["zip/constant_time_eq"]
hmac = ["zip/hmac"]
pbkdf2 = ["zip/pbkdf2"]
sha1 = ["zip/sha1"]
rand = ["zip/rand"]
zeroize = ["zip/zeroize"]
zopfli = ["zip/zopfli"]
flate2 = ["zip/flate2"]
lzma-rs = ["zip/lzma-rs"]
default = [
"aes-crypto",
"bzip2",
"deflate64",
"deflate",
"lzma",
"time",
"zstd",
"xz",
]