Lines Matching +full:test +full:- +full:lz4
1 //! Pure Rust, high performance implementation of LZ4 compression.
3 …ailed explanation of the algorithm can be found [here](http://ticki.github.io/blog/how-lz4-works/).
7 //! This crate provides two ways to use lz4. The first way is through the
12 //! lz4 frame format. Unless you have a specific reason to the contrary, you
13 //! should only use the lz4 frame format. Specifically, the lz4 frame format
20 //! functions. These functions provide access to the lz4 block format, and
22 //! if you know you specifically need the lz4 block format.
32 //! // Wrap the stdout writer in a LZ4 Frame writer.
44 //! // Wrap the stdin reader in a LZ4 FrameDecoder.
61 //! - `safe-encode` uses only safe rust for encode. _enabled by default_
62 //! - `safe-decode` uses only safe rust for encode. _enabled by default_
63 //! - `frame` support for LZ4 frame format. _implies `std`, enabled by default_
64 //! - `std` enables dependency on the standard library. _enabled by default_
66 //! For maximum performance use `no-default-features`.
77 #[cfg_attr(test, macro_use)]
80 #[cfg(test)]
96 …note = "This re-export is deprecated as it can be confused with the frame API and is not suitable …
101 …note = "This re-export is deprecated as it can be confused with the frame API and is not suitable …
106 all(feature = "safe-encode", feature = "safe-decode"),