rust-lz-fear
rust-lz-fear copied to clipboard
A fast pure-rust no-unsafe implementation of LZ4 compression and decompression
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
shepmaster/twox-hash#41
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...