libazo 0.1.1

Decompression library for the AZO format
Documentation
  • Coverage
  • 87.5%
    7 out of 8 items documented0 out of 3 items with examples
  • Size
  • Source code size: 36.75 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 455.58 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 3s Average build duration of successful builds.
  • all releases: 4s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • alkegi/libazo
    2 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • OctopusET

libazo

crates.io docs.rs CI

A decompression library for the AZO format.

let compressed = std::fs::read("data.azo")?;
let mut out = Vec::new();
let crc = libazo::extract_azo(&mut &compressed[..], &mut out, compressed.len() as u64, None, None)?;
println!("{} bytes, crc {crc:08x}", out.len());

See the documentation for the full API.

Reference