#rfc #thread #de-compression #1952 #1951

flate3

High-performance RFC 1952 compression and de-compression

30 releases (6 stable)

1.1.0 Mar 1, 2024
1.0.4 Dec 3, 2023
1.0.3 Nov 20, 2023
0.1.23 Nov 11, 2023
0.1.3 Jul 31, 2020

#117 in Compression

Download history 2/week @ 2024-01-23 10/week @ 2024-01-30 16/week @ 2024-02-06 7/week @ 2024-02-13 83/week @ 2024-02-20 223/week @ 2024-02-27 53/week @ 2024-03-05 24/week @ 2024-03-12 13/week @ 2024-03-19 13/week @ 2024-03-26 58/week @ 2024-04-02 8/week @ 2024-04-09

94 downloads per month
Used in 4 crates

MIT/Apache

50KB
1.5K 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 );

No runtime deps