#would #was #estimate #try

no-std bin+lib zopfli

A Rust implementation of the Zopfli compression algorithm

18 releases

0.8.0 Sep 27, 2023
0.7.4 May 27, 2023
0.7.2 Jan 23, 2023
0.7.1 Sep 7, 2022
0.1.0 Mar 9, 2016

#25 in Compression

Download history 5804/week @ 2023-12-23 6770/week @ 2023-12-30 8287/week @ 2024-01-06 8848/week @ 2024-01-13 9316/week @ 2024-01-20 9427/week @ 2024-01-27 8914/week @ 2024-02-03 8613/week @ 2024-02-10 8593/week @ 2024-02-17 9375/week @ 2024-02-24 9263/week @ 2024-03-02 9809/week @ 2024-03-09 8204/week @ 2024-03-16 7700/week @ 2024-03-23 7757/week @ 2024-03-30 7083/week @ 2024-04-06

32,267 downloads per month
Used in 32 crates (9 directly)

Apache-2.0

160KB
3.5K SLoC

Zopfli in Rust logo

Zopfli in Rust

crates.io latest version docs.rs status

This is a reimplementation of the Zopfli compression tool in Rust.

Carol Nichols started the Rust implementation as an experiment in incrementally rewriting a C library in Rust, keeping the project compiling at every step. For more information about that experiment, see the slides for a talk she gave about it and the repo as it was for the experiment.

The minimum supported Rust version (MSRV) for this crate is 1.66. Bumping this version is not considered a breaking change for semantic versioning purposes. We will try to do it only when we estimate that such a bump would not cause widespread inconvenience or breakage.

How to build

To build the code, run:

$ cargo build --release

and the executable will be in target/release/zopfli.

This should work on stable or beta Rust.

You can also run make zopfli, which will run cargo build and then symlink target/release/zopfli to just zopfli in the project root; this is what the C library does and it was useful for scripting purposes during the rewrite process to keep the command and resulting artifacts the same.

Running the tests

There are some unit tests, mostly around the boundary package merge algorithm implementation in katajainen.rs, and a property-based test for compression reversibility. These tests can be run with:

$ cargo test

Golden master tests, to check that compressed files are exactly the same as the C implementation would generate, can be run using:

$ ./test/run.sh

and then checking that git reports no changes to the files in test/results.

Or you can run make test, which will run cargo test followed by ./test/run.sh; it will fail if there are any mismatches.

Dependencies

~155KB