1//! Full-featured liblz4 binding for Rust. 2 3#![deny(unsafe_code)] 4#![deny(clippy::all)] 5#![cfg_attr(docsrs, feature(doc_cfg))] 6 7mod common; 8 9pub mod lz4; 10pub mod lz4_hc; 11pub mod lz4f; 12 13pub use common::*;