rust-lz-fear icon indicating copy to clipboard operation
rust-lz-fear copied to clipboard

A fast pure-rust no-unsafe implementation of LZ4 compression and decompression

Results 5 rust-lz-fear issues
Sort by recently updated
recently updated
newest added

Hi, i've been looking over some solutions to compression on embedded rust eg: no_std environment. Does this crate require standard library? Thanks, Sam

Right now it looks like the output from dictionary mode works, but never matches the C implementation. The most important reason is that the C implementation maintains two distinct hashtables...

The C implementation uses the U16Table for small inputs, but our framed encoder currently always uses the U32Table.

* EncoderTable probably needs a rework (see wip-rework branch). * EncoderTable stuff is completely undocumented * No examples * raw API is quite inconvenient (and also there's no reason it's...

help wanted