Merge pull request #175 from mvdnes/pin-flate2

chore: pin the flate2 version for now
This commit is contained in:
Ryan Levick 2020-07-14 14:02:21 +02:00 committed by GitHub
commit fbffaed42a
Signed by: DevComp
GPG key ID: 4AEE18F83AFDEB23

View file

@ -13,7 +13,8 @@ Library to support the reading and writing of zip files.
edition = "2018"
[dependencies]
flate2 = { version = "1.0", default-features = false, optional = true }
# 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
flate2 = { version = ">=1.0.0, <=1.0.14", default-features = false, optional = true }
time = { version = "0.1", optional = true }
byteorder = "1.3"
bzip2 = { version = "0.3", optional = true }