Lines Matching +full:zlib +full:- +full:level
1 # libz-ng-sys
3 A library for linking zlib-ng (`libz-ng`) to Rust programs natively, rather
4 than in zlib-compat mode.
6 zlib-ng is a high-performance implementation of zlib. zlib-ng supports building
7 in two modes: zlib-compat mode, in whih it provides the same API as zlib and
8 generally works as a drop-in replacement, and native mode, in which it provides
9 its own API. The native API is almost identical to the zlib-compat API, except
10 that some types use more correct sizes (rather than the sizes required for zlib
12 zlib and zlib-ng to coexist in the same program.
14 This crate provides bindings to the native zlib-ng API. However, for simplicity
15 of porting, this crate exports the same API as libz-sys (without the `zng_`
17 libz-sys and libz-ng-sys.
19 # High-level API
21 This crate provides bindings to the raw low-level C API. For a higher-level
22 safe API to work with DEFLATE, zlib, or gzip streams, see
30 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
31 http://www.apache.org/licenses/LICENSE-2.0)
32 * MIT license ([LICENSE-MIT](LICENSE-MIT) or
40 for inclusion in this crate by you, as defined in the Apache-2.0 license, shall