No description
  • Rust 81.9%
  • C 18.1%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
Daniel Baumann 6929a38b39
Releasing fastforward version 2.0.16-1~ffwd13+u1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2026-07-20 18:52:01 +02:00
debian Releasing fastforward version 2.0.16-1~ffwd13+u1. 2026-07-20 18:52:01 +02:00
src Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
wasm-shim Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
.cargo_vcs_info.json Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
build.rs Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
Cargo.lock Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
Cargo.toml Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
Cargo.toml.orig Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00
LICENSE Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
LICENSE.Apache-2.0 Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
LICENSE.Mit Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
Readme.md Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
zdict.h Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
zstd.h Adding upstream version 2.0.13. 2026-07-20 18:51:30 +02:00
zstd_seekable.h Merging upstream version 2.0.16. 2026-07-20 18:51:47 +02:00

zstd-sys

This is the low-level auto-generated binding to the zstd library. You probably don't want to use this library directly; instead, look at zstd-rs or zstd-safe.

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 in this directory 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