71 releases

0.13.1 Mar 27, 2024
0.13.0 Oct 11, 2023
0.12.4 Jul 19, 2023
0.12.3+zstd.1.5.2 Jan 31, 2023
0.1.3 Mar 2, 2016

#9 in Compression

Download history 771996/week @ 2024-01-03 802566/week @ 2024-01-10 841922/week @ 2024-01-17 819051/week @ 2024-01-24 826550/week @ 2024-01-31 832401/week @ 2024-02-07 848228/week @ 2024-02-14 903674/week @ 2024-02-21 954907/week @ 2024-02-28 930205/week @ 2024-03-06 923169/week @ 2024-03-13 936479/week @ 2024-03-20 939503/week @ 2024-03-27 1011787/week @ 2024-04-03 994463/week @ 2024-04-10 810680/week @ 2024-04-17

3,929,008 downloads per month
Used in 2,518 crates (412 directly)

MIT license

180KB
3.5K SLoC

zstd

crates.io MIT licensed

Build on Linux Build on Windows Build on macOS Build on wasm

This library is a rust binding for the zstd compression library.

Documentation

1 - Add to cargo.toml

$ cargo add zstd
# Cargo.toml

[dependencies]
zstd = "0.13"

2 - Usage

This library provides Read and Write wrappers to handle (de)compression, along with convenience functions to made common tasks easier.

For instance, stream::copy_encode and stream::copy_decode are easy-to-use wrappers around std::io::copy. Check the stream example:

use std::io;

// This function use the convenient `copy_encode` method
fn compress(level: i32) {
    zstd::stream::copy_encode(io::stdin(), io::stdout(), level).unwrap();
}

// This function does the same thing, directly using an `Encoder`:
fn compress_manually(level: i32) {
    let mut encoder = zstd::stream::Encoder::new(io::stdout(), level).unwrap();
    io::copy(&mut io::stdin(), &mut encoder).unwrap();
    encoder.finish().unwrap();
}

fn decompress() {
    zstd::stream::copy_decode(io::stdin(), io::stdout()).unwrap();
}

Asynchronous support

The async-compression crate provides an async-ready integration of various compression algorithms, including zstd-rs.

Compile it yourself

zstd is included as a submodule. To get everything during your clone, use:

git clone https://github.com/gyscos/zstd-rs --recursive

Or, if you cloned it without the --recursive flag, call this from inside the repository:

git submodule update --init

Then, running cargo build should take care of building the C library and linking to it.

Build-time bindgen

This library includes a pre-generated bindings.rs file. You can also generate new bindings at build-time, using the bindgen feature:

cargo build --features bindgen

TODO

  • Benchmarks, optimizations, ...

Disclaimer

This implementation is largely inspired by bozaro's lz4-rs.

License

  • The zstd C library is under a dual BSD/GPLv2 license.
  • This zstd-rs binding library is under a MIT license.

Dependencies

~2.5–4MB
~57K SLoC