LZ👌-rs

Rust wrapper for LZ👌, a minimal, MIT-licensed implementation of the LZO compression format.
See the original README for more information.
Features
- MIT-licensed
- Simple compression and decompression routines
#![no_std]compatible
Usage
See the compress or decompress documentation for reference.
In Cargo.toml:
[]
= "1.0.0"
Or, to only enable certain features:
[]
= "1.0.0"
= false
= ["decompress", "compress"]
decompress: Enables decompression functions.compress: Enables compression functions.alloc: Enables optional compression functions that perform heap allocation.
Withoutstd, this usesextern crate alloc.std: Enables use ofstd. Impliesalloc.
All features are enabled by default.
License
LZ👌 and LZ👌-rs are available under the MIT License and have no external dependencies.