Turns out LZMA decompression is not working
[ouch.git] / third-party / zip / Cargo.toml
blob0a8583a1b85fe415b1dc06894ba827f6ae61ca67
1 [package]
2 name = "zip"
3 version = "0.5.10"
4 authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
5 license = "MIT"
6 repository = "https://github.com/zip-rs/zip.git"
7 keywords = ["zip", "archive"]
8 description = """
9 Library to support the reading and writing of zip files.
10 """
11 edition = "2018"
13 [dependencies]
15 flate2 = { version = "1.0.20", default-features = false, optional = true }
16 time = { version = "0.1", optional = true }
17 byteorder = "1.3"
18 bzip2 = { version = "0.3", optional = true }
19 crc32fast = "1.0"
20 thiserror = "1.0"
22 [dev-dependencies]
23 bencher = "0.1"
24 rand = "0.7"
25 walkdir = "2"
27 [features]
28 deflate = ["flate2/rust_backend"]
29 deflate-miniz = ["flate2/default"]
30 deflate-zlib = ["flate2/zlib"]
31 default = ["bzip2", "deflate", "time"]
33 [[bench]]
34 name = "read_entry"
35 harness = false