Score: 50
Author: Shnatsel
https://www.reddit.com/r/rust/comments/110hxc9/introducing_zuneinflate_the_fastest_rust/
zune-inflate is a port of libdeflate to safe Rust. It is much faster than miniz_oxide and all other safe-Rust implementations, and consistently beats even Zlib. The performance is roughly on par with zlib-ng - sometimes faster, sometimes slower. It is not (yet) as fast as the original libdeflate in C. ### Features - Support for gzip, zlib and raw deflate streams - Implemented in safe Rust, optionally uses SIMD-accelerated checksum algorithms - #[no_std] friendly, but requires the alloc feature - Supports decompression limits to prevent zip bombs ### Drawbacks - Just like libdeflate, this crate decompresses data into memory all at once into a Vec, and does not support streaming via the Read trait. - Only decompression is implemented so far, so you'll need another library for compression. ### Maturity zune-inflate has
--
FROM 117.147.20.*