#lzma #decompression

lzma-rs-perf-exp

A codec for LZMA, LZMA2 and XZ written in pure Rust with performance experiments

1 unstable release

0.2.1 Aug 9, 2022

#1218 in Compression

Download history 120/week @ 2025-09-22 56/week @ 2025-09-29 34/week @ 2025-10-06 65/week @ 2025-10-13 78/week @ 2025-10-20 46/week @ 2025-10-27 44/week @ 2025-11-03 37/week @ 2025-11-10 66/week @ 2025-11-17 49/week @ 2025-11-24 232/week @ 2025-12-01 86/week @ 2025-12-08 201/week @ 2025-12-15 53/week @ 2025-12-22 34/week @ 2025-12-29 71/week @ 2026-01-05

362 downloads per month
Used in 3 crates (via chd)

MIT license

130KB
3K SLoC

lzma-rs-perf-exp

Crate Documentation Safety Dance Build Status Minimum rust 1.51

This project is a decoder for LZMA and its variants written in pure Rust, with focus on clarity. It already supports LZMA, LZMA2 and a subset of the .xz file format.

This fork provides some (API-unstable) performance experiments for use in chd-rs, which may gradually be upstreamed. The API is subject to change without a corresponding SemVer-compatible version bump.

Usage

Decompress a .xz file.

let filename = "foo.xz";
let mut f = std::io::BufReader::new(std::fs::File::open(filename).unwrap());
// "decomp" can be anything that implements "std::io::Write"
let mut decomp: Vec<u8> = Vec::new();
lzma_rs::xz_decompress(&mut f, &mut decomp).unwrap();
// Decompressed content is now in "decomp"

Encoder

For now, there is also a dumb encoder that only uses byte literals, with many hard-coded constants for code simplicity. Better encoders are welcome!

Contributing

Pull-requests are welcome, to improve the decoder, add better encoders, or more tests. Ultimately, this project should also implement .xz and .7z files.

License

MIT

Dependencies

~0.2–3MB
~50K SLoC