libz-sys 0.1.3

Bindings to the system libz library (also known as zlib).
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate pkg_config;

fn main() {
    match pkg_config::find_library("zlib") {
        Ok(..) => return,
        Err(..) => {}
    }

    println!("cargo:rustc-link-lib=z");
}