• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2018"
14name = "zip"
15version = "0.6.4"
16authors = [
17    "Mathijs van de Nes <git@mathijs.vd-nes.nl>",
18    "Marli Frost <marli@frost.red>",
19    "Ryan Levick <ryan.levick@gmail.com>",
20]
21description = """
22Library to support the reading and writing of zip files.
23"""
24readme = "README.md"
25keywords = [
26    "zip",
27    "archive",
28]
29license = "MIT"
30repository = "https://github.com/zip-rs/zip.git"
31
32[[bench]]
33name = "read_entry"
34harness = false
35
36[[bench]]
37name = "read_metadata"
38harness = false
39
40[dependencies.aes]
41version = "0.7.5"
42optional = true
43
44[dependencies.byteorder]
45version = "1.4.3"
46
47[dependencies.bzip2]
48version = "0.4.3"
49optional = true
50
51[dependencies.constant_time_eq]
52version = "0.1.5"
53optional = true
54
55[dependencies.crc32fast]
56version = "1.3.2"
57
58[dependencies.flate2]
59version = "1.0.23"
60optional = true
61default-features = false
62
63[dependencies.hmac]
64version = "0.12.1"
65features = ["reset"]
66optional = true
67
68[dependencies.pbkdf2]
69version = "0.11.0"
70optional = true
71
72[dependencies.sha1]
73version = "0.10.1"
74optional = true
75
76[dependencies.time]
77version = "0.3.7"
78features = ["std"]
79optional = true
80default-features = false
81
82[dependencies.zstd]
83version = "0.11.2"
84optional = true
85
86[dev-dependencies.bencher]
87version = "0.1.5"
88
89[dev-dependencies.getrandom]
90version = "0.2.5"
91
92[dev-dependencies.time]
93version = "0.3.7"
94features = [
95    "formatting",
96    "macros",
97]
98
99[dev-dependencies.walkdir]
100version = "2.3.2"
101
102[features]
103aes-crypto = [
104    "aes",
105    "constant_time_eq",
106    "hmac",
107    "pbkdf2",
108    "sha1",
109]
110default = [
111    "aes-crypto",
112    "bzip2",
113    "deflate",
114    "time",
115    "zstd",
116]
117deflate = ["flate2/rust_backend"]
118deflate-miniz = ["flate2/default"]
119deflate-zlib = ["flate2/zlib"]
120unreserved = []
121
122[target."cfg(any(all(target_arch = \"arm\", target_pointer_width = \"32\"), target_arch = \"mips\", target_arch = \"powerpc\"))".dependencies.crossbeam-utils]
123version = "0.8.8"
124