Add into_inner() to FrameDecoder
Change uncompressed_size visibility to pub
Guard against usize overflows/underflows and raw pointer undefined behavior
Fixes imports bug from 0.9.1 for no-default-features
Fix no_std support for safe-decode
Fix unsoundness in the the api in regards to unitialized data. (thanks to @arthurprs)
Support for the lz4 frame format, with a massive amount of improvements. (big thanks to @arthurprs) ~40% faster safe decompression, ~10% faster safe compression.
- PR-13 PSeitz#13
Added the possibility to compress/decompress into a u8 slice with
for compress_into
and decompress_into
. Previously it only accepted
a Vec
with caused some double allocations for some scenarios. It's
around 10% faster for compressible data with safe-decoding, which makes sense, since
push has additional overhead to check the capacity which is not required.
- BUG-11 (PSeitz#11) Allow to compress/decompress into a u8 slice