Always use rust backend of flate2
Also fixes compiling with --no-default-features
This commit is contained in:
parent
30236e9a5c
commit
50b57f4e37
1 changed files with 2 additions and 3 deletions
|
@ -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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue