miniz_oxide

Rust replacement for the miniz deflate/zlib encoder/decoder

This project is organized into a C API shell and a rust crate. The Rust crate is found in the miniz_oxide subdirectory.

minizoxideC_API

The C API is intented to replicate the api exported from miniz.

API documentation

TODO

Testing

bash $ cargo test $ ./test.sh

Benches

bash $ cargo bench --features=benching or to compare to miniz bash $ ./travis-after-success.sh

Including in C/C++ projects

Link against the libminiz_oxide_c_api.a generated by build.sh

Cargo-fuzz testing

Install fuzzer: bash $ cargo install cargo-fuzz

Run fuzzer: bash $ ./run_fuzz.sh

License

This library (excluding the miniz C code used for tests) is licensed under the MIT license. The library is based on the miniz C library, of which the parts used are dual-licensed under the MIT license and also the unlicense. The parts of miniz that are not covered by the unlicense is some Zip64 code which is only MIT licensed. This and other Zip functionality in miniz is not part of the minizoxidde and minizoxidecapi rust libraries.