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