| Crates.io | lzokay |
| lib.rs | lzokay |
| version | 2.0.1 |
| created_at | 2021-08-25 23:16:57.760959+00 |
| updated_at | 2025-10-16 23:44:15.736779+00 |
| description | A minimal, MIT-licensed implementation of the LZO compression format. |
| homepage | |
| repository | https://github.com/encounter/lzokay-rs |
| max_upload_size | |
| id | 442391 |
| size | 54,089 |
Pure-Rust port of LZ👌, a minimal, MIT-licensed implementation of the LZO compression format.
See the original README for more information.
#![no_std] compatibleSee 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.
Without std, this uses extern crate alloc.std: Enables use of std. Implies alloc.All features are enabled by default.
LZ👌 and LZ👌-rs are available under the MIT License and have no external dependencies.