blosc_src/
lib.rs

1//! This crate is for building `c-blosc` and linking to the static build.
2
3#![allow(clippy::redundant_static_lifetimes)]
4#![allow(non_camel_case_types)]
5
6include!("bindgen.rs");
7
8#[cfg(feature = "zlib")]
9extern crate libz_sys;
10
11#[cfg(feature = "zstd")]
12extern crate zstd_sys;
13
14#[cfg(feature = "lz4")]
15extern crate lz4_sys;
16
17#[cfg(feature = "snappy")]
18extern crate snappy_src;