rust-compression icon indicating copy to clipboard operation
rust-compression copied to clipboard

Compression libraries implemented by pure Rust.

Results 6 rust-compression issues
Sort by recently updated
recently updated
newest added

Edit: actually, just try to compile the rust-compression crate will fail using: cargo build --target thumbv7m-none-eabi Add compression to a no_std crate and compile for an arm micro controller like:...

Hi there! Amazing crate, this is much appreciated for embedded platforms. I just offer the suggestion to use [`rust-crc32fast`](https://github.com/srijs/rust-crc32fast) to compute the CRC32 for gzip, as it can take full...

Hello! I am implementing an encoder/decoder that requires bit level reading/writing. While looking for a solution to this I found your `bitio` module, and I was wondering whether you'd be...

Both legacy and LZMA2 formats, including XZ flavor. http://siciarz.net/24-days-rust-zip-and-lzma-compression/ There is [lzma](https://crates.io/crates/lzma) crate, but it is abandoned and incomplete.

It is gaining popularity lately. See format description https://github.com/facebook/zstd/blob/dev/doc/zstd_compression_format.md And decoding testing tool https://github.com/facebook/zstd/tree/v1.3.4/tests#decodecorpus---tool-to-generate-zstandard-frames-for-decoder-testing

https://github.com/chalharu/rust-compression/blob/62afc98d69ff835fa70deb58feb208833fbf1764/src/cbuffer.rs#L39 get_unchecked(0) will panic in dev build, if that slice is empty. ``` thread 'main' panicked at library/core/src/panicking.rs:215:5: unsafe precondition(s) violated: slice::get_unchecked requires that the index is within the slice...