minilzo-rs

Crates.iominilzo-rs
lib.rsminilzo-rs
version0.6.1
sourcesrc
created_at2020-05-13 10:10:20.990829
updated_at2023-12-07 06:57:22.046959
descriptionA pure rust implementation bound to the C version of minilzo.
homepage
repositoryhttps://github.com/gmg137/minilzo-rs
max_upload_size
id241055
size413,962
(gmg137)

documentation

https://docs.rs/minilzo_rs/

README

minilzo-rs

A pure rust implementation bound to the C version of minilzo.

Crates.io Documentation License Actions Status

Functions

  • compress
  • decompress
  • adler32

Example

    // test compress
    let mut lzo = minilzo_rs::LZO::init().unwrap();
    let input = [0x00u8; 1024];
    let out = lzo.compress(&input).unwrap();

    // test decompress
    let input = lzo.decompress_safe(&out[..], 1024);
    let input = input.unwrap();
    assert_eq!(input.len(), 1024);

License

This project's source code and documentation is licensed under the GNU General Public License (GPL v3).

LZO itself is licensed under the terms of the GNU General Public License (GPL v2+).

Commit count: 16

cargo fmt