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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "zip"
16version = "0.5.11"
17authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
18description = "Library to support the reading and writing of zip files.\n"
19keywords = ["zip", "archive"]
20license = "MIT"
21repository = "https://github.com/zip-rs/zip.git"
22
23[[bench]]
24name = "read_entry"
25harness = false
26[dependencies.byteorder]
27version = "1.3"
28
29[dependencies.bzip2]
30version = "0.3"
31optional = true
32
33[dependencies.crc32fast]
34version = "1.0"
35
36[dependencies.flate2]
37version = ">=1.0.0, <=1.0.14"
38optional = true
39default-features = false
40
41[dependencies.thiserror]
42version = "1.0"
43
44[dependencies.time]
45version = "0.1"
46optional = true
47[dev-dependencies.bencher]
48version = "0.1"
49
50[dev-dependencies.rand]
51version = "0.7"
52
53[dev-dependencies.walkdir]
54version = "2"
55
56[features]
57default = ["bzip2", "deflate", "time"]
58deflate = ["flate2/rust_backend"]
59deflate-miniz = ["flate2/default"]
60deflate-zlib = ["flate2/zlib"]
61