5 stable releases
| 2.0.1 | Oct 16, 2025 |
|---|---|
| 2.0.0 | Oct 15, 2025 |
| 1.0.2 | Oct 15, 2025 |
| 1.0.1 | Aug 26, 2021 |
| 1.0.0 | Aug 25, 2021 |
#239 in Compression
109 downloads per month
Used in 8 crates
(6 directly)
41KB
763 lines
LZ👌-rs

Pure-Rust port of 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:
[dependencies]
lzokay = "2.0"
Or, to only enable certain features:
[dependencies.lzokay]
version = "2.0"
default-features = false
features = ["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.
Dependencies
~0.6–1.1MB
~18K SLoC