zip 1.1.3

Library to support the reading and writing of zip files.
Documentation
1
2
3
4
5
6
7
use std::env::var;

fn main() {
    if var("CARGO_FEATURE_DEFLATE_MINIZ").is_ok() {
        println!("cargo:warning=Feature `deflate-miniz` is deprecated; replace it with `deflate`");
    }
}