[go: nahoru, domu]

blob: 68fe4ca2e4dfdaa1b00fa18f4e2bd4a921680267 [file] [log] [blame]
Yi Kongf19c3f22021-02-13 04:04:00 +08001[package]
2name = "zip"
Elliott Hughes59359f72021-04-01 16:05:04 -07003version = "0.5.11"
4authors = ["Mathijs van de Nes <git@mathijs.vd-nes.nl>", "Marli Frost <marli@frost.red>", "Ryan Levick <ryan.levick@gmail.com>"]
Yi Kongf19c3f22021-02-13 04:04:00 +08005license = "MIT"
Elliott Hughes59359f72021-04-01 16:05:04 -07006repository = "https://github.com/zip-rs/zip.git"
Yi Kongf19c3f22021-02-13 04:04:00 +08007keywords = ["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