Lines Matching +full:zlib +full:- +full:ng +full:-
6 license = "MIT/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, miniz.c, and multiple zlib implementations. Supports
16 zlib, gzip, and raw deflate streams.
24 cfg-if = "1.0.0"
25 miniz-sys = { path = "miniz-sys", version = "0.1.11", optional = true }
26 libz-sys = { version = "1.1.0", optional = true, default-features = false }
27 cloudflare-zlib-sys = { version = "0.2.0", optional = true }
28 tokio-io = { version = "0.1.11", optional = true }
30 miniz_oxide = { version = "0.4.0", optional = true, default-features = false }
34 miniz_oxide = { version = "0.4.0", default-features = false }
36 [dev-dependencies]
38 quickcheck = { version = "0.9", default-features = false }
39 tokio-io = "0.1.11"
40 tokio-tcp = "0.1.3"
41 tokio-threadpool = "0.1.10"
46 any_zlib = [] # note: this is not a real user-facing feature
47 zlib = ["any_zlib", "libz-sys"]
48 zlib-ng-compat = ["zlib", "libz-sys/zlib-ng"]
49 cloudflare_zlib = ["any_zlib", "cloudflare-zlib-sys"]
51 tokio = ["tokio-io", "futures"]