gendx / lzma-rs

An LZMA decoder written in pure Rust
MIT License
127 stars 27 forks source link

.lz (lzip) #71

Open firasuke opened 2 years ago

firasuke commented 2 years ago

Is it possible to decompress .lz (lzip) files?

firasuke commented 2 years ago

I tried lzma-rs and I wasn't able to decompress an lzip file (.lz), even though the lzip format uses the LZMA algorithm.

Any thoughts on this?

gendx commented 2 years ago

This is currently not implemented. However, this could be added as a wrapper on top of the raw LZMA algorithm, like the current xz module.