#zlib #zlib-ng #bindings #api #native #programs #linker

sys libz-ng-sys

Low-level bindings to zlib-ng (libz-ng), a high-performance zlib library

9 stable releases

1.1.15 Jan 17, 2024
1.1.14 Jan 9, 2024
1.1.12 Jul 26, 2023
1.1.9 Apr 28, 2023
1.1.8 May 28, 2022

#57 in Compression

Download history 6602/week @ 2023-12-23 9254/week @ 2023-12-30 12465/week @ 2024-01-06 12024/week @ 2024-01-13 14147/week @ 2024-01-20 12278/week @ 2024-01-27 13838/week @ 2024-02-03 12806/week @ 2024-02-10 14030/week @ 2024-02-17 15699/week @ 2024-02-24 17177/week @ 2024-03-02 14734/week @ 2024-03-09 15274/week @ 2024-03-16 14361/week @ 2024-03-23 15401/week @ 2024-03-30 13225/week @ 2024-04-06

60,560 downloads per month
Used in 76 crates (5 directly)

MIT/Apache

2.5MB
15K SLoC

C 12K SLoC // 0.2% comments C++ 2.5K SLoC // 0.1% comments Rust 426 SLoC // 0.1% comments Shell 251 SLoC // 0.2% comments VBScript 12 SLoC

libz-ng-sys

A library for linking zlib-ng (libz-ng) to Rust programs natively, rather than in zlib-compat mode.

zlib-ng is a high-performance implementation of zlib. zlib-ng supports building in two modes: zlib-compat mode, in whih it provides the same API as zlib and generally works as a drop-in replacement, and native mode, in which it provides its own API. The native API is almost identical to the zlib-compat API, except that some types use more correct sizes (rather than the sizes required for zlib compatibility), and the functions all have a zng_ prefix. The latter allows zlib and zlib-ng to coexist in the same program.

This crate provides bindings to the native zlib-ng API. However, for simplicity of porting, this crate exports the same API as libz-sys (without the zng_ prefixes), making it easier to write Rust software compatible with both libz-sys and libz-ng-sys.

High-level API

This crate provides bindings to the raw low-level C API. For a higher-level safe API to work with DEFLATE, zlib, or gzip streams, see flate2. flate2 supports many different implementations.

Development

This crate is built from the same sources as libz-sys. From within those sources, Cargo.toml is the manifest for libz-sys, and Cargo-zng.toml is the manifest for libz-ng-sys. The script ./cargo-zng invokes Cargo on a temporary copy of the sources with Cargo-zng.toml replacing Cargo.toml; for instance, use ./cargo-zng publish to publish libz-ng-sys.

Minimum Supported Rust Version (MSRV) Policy

This crate uses the same MSRV policy as the flate2 crate: This crate supports the current and previous stable versions of Rust. Older versions of Rust may work, but we don't guarantee these will continue to work.

License

This project is licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies