gendx / lzma-rs

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

Use io::Write for the decompressor #3

Closed gendx closed 7 years ago

gendx commented 7 years ago

The decompressor currently writes all the data to a Vec<u8>. The io::Write trait should be supported instead. Such implementation requires to add an internal buffer to maintain the LZ dictionary.