• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "zip"
3version = "0.5.11"
4authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
5license = "MIT"
6repository = "https://github.com/zip-rs/zip.git"
7keywords = ["zip", "archive"]
8description = """
9Library to support the reading and writing of zip files.
10"""
11edition = "2018"
12
13[dependencies]
14# FIXME(#170): flate2 1.0.15 has an MSRV of 1.36.0, breaking ours. We'll update when we know if this will be addressed
15flate2 = { version = ">=1.0.0, <=1.0.14", default-features = false, optional = true }
16time = { version = "0.1", optional = true }
17byteorder = "1.3"
18bzip2 = { version = "0.3", optional = true }
19crc32fast = "1.0"
20thiserror = "1.0"
21
22[dev-dependencies]
23bencher = "0.1"
24rand = "0.7"
25walkdir = "2"
26
27[features]
28deflate = ["flate2/rust_backend"]
29deflate-miniz = ["flate2/default"]
30deflate-zlib = ["flate2/zlib"]
31default = ["bzip2", "deflate", "time"]
32
33[[bench]]
34name = "read_entry"
35harness = false
36