Lines Matching +full:zlib +full:- +full:dev
6 license = "MIT OR Apache-2.0"
8 keywords = ["gzip", "deflate", "zlib", "zlib-ng", "encoding"]
9 categories = ["compression", "api-bindings"]
10 repository = "https://github.com/rust-lang/flate2-rs"
11 homepage = "https://github.com/rust-lang/flate2-rs"
15 Supports miniz_oxide and multiple zlib implementations. Supports zlib, gzip,
20 libz-sys = { version = "1.1.8", optional = true, default-features = false }
21 libz-ng-sys = { version = "1.1.8", optional = true }
22 cloudflare-zlib-sys = { version = "0.3.0", optional = true }
23 miniz_oxide = { version = "0.7.1", optional = true, default-features = false, features = ["with-all…
27 miniz_oxide = { version = "0.7.1", default-features = false, features = ["with-alloc"] }
29 [dev-dependencies]
31 quickcheck = { version = "1.0", default-features = false }
35 any_zlib = ["any_impl"] # note: this is not a real user-facing feature
36 any_impl = [] # note: this is not a real user-facing feature
37 zlib = ["any_zlib", "libz-sys"]
38 zlib-default = ["any_zlib", "libz-sys/default"]
39 zlib-ng-compat = ["zlib", "libz-sys/zlib-ng"]
40 zlib-ng = ["any_zlib", "libz-ng-sys"]
41 cloudflare_zlib = ["any_zlib", "cloudflare-zlib-sys"]
43 miniz-sys = ["rust_backend"] # For backwards compatibility
46 all-features = true
47 rustdoc-args = ["--cfg", "docsrs"]