https://github.com/gendx/lzma-rs
An LZMA decoder written in pure Rust
https://github.com/gendx/lzma-rs
codec decoder lzma
Last synced: 6 months ago
JSON representation
An LZMA decoder written in pure Rust
- Host: GitHub
- URL: https://github.com/gendx/lzma-rs
- Owner: gendx
- License: mit
- Created: 2017-10-04T09:35:15.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T10:20:01.000Z (almost 2 years ago)
- Last Synced: 2025-04-01T18:48:01.042Z (about 1 year ago)
- Topics: codec, decoder, lzma
- Language: Rust
- Homepage:
- Size: 1.73 MB
- Stars: 141
- Watchers: 4
- Forks: 29
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ccamel - gendx/lzma-rs - An LZMA decoder written in pure Rust (Rust)
README
# lzma-rs
[](https://crates.io/crates/lzma-rs)
[](https://docs.rs/lzma-rs)
[](https://releases.rs/docs/1.71.0/)
[](https://deps.rs/repo/github/gendx/lzma-rs)
[](https://github.com/rust-secure-code/safety-dance/)

[](https://codecov.io/gh/gendx/lzma-rs)
[](https://github.com/aschey/vercel-tokei)
[](https://crates.io/crates/lzma-rs)
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.
## Usage
Decompress a `.xz` file.
```rust
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 = 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