29 releases (5 stable)
1.0.4 | Dec 3, 2023 |
---|---|
1.0.3 | Nov 20, 2023 |
0.1.23 | Nov 11, 2023 |
0.1.21 | Oct 29, 2021 |
0.1.3 | Jul 31, 2020 |
#118 in Compression
691 downloads per month
Used in 4 crates
49KB
1K
SLoC
RFC 1951 compression and de-compression.
flate3 is intended to be a high-performance alternative to the flate2 crate.
It should compress slightly better than flate2. It uses multiple threads to compress faster.
Example:
let data = [ 1,2,3,4,1,2,3 ];
let cb : Vec<u8> = flate3::deflate( &data );
println!( "compressed size={}", cb.len() );
let uc : Vec<u8> = flate3::inflate( &cb );
println!( "de-compressed size={}", uc.len() );
assert!( uc == &data );