Always use rust backend of flate2

Also fixes compiling with --no-default-features
This commit is contained in:
Mathijs van de Nes 2018-01-06 11:44:28 +01:00
parent 30236e9a5c
commit 50b57f4e37

View file

@ -12,7 +12,7 @@ Library to support the reading and writing of zip files.
"""
[dependencies]
flate2 = { version = "1.0", default-features = false }
flate2 = { version = "1.0", default-features = false, features = ["rust_backend"]}
time = "0.1"
podio = "0.1"
msdos_time = "0.1"
@ -22,5 +22,4 @@ bzip2 = { version = "0.3", optional = true }
walkdir = "1.0"
[features]
default = ["bzip2", "flate2/default"]
rust_backend = ["flate2/rust_backend"]
default = ["bzip2"]