use-lz4 0.1.0

LZ4 compression labels, extensions, and option metadata for RustUse
Documentation
  • Coverage
  • 100%
    25 out of 25 items documented1 out of 10 items with examples
  • Size
  • Source code size: 7.86 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 531.71 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2s Average build duration of successful builds.
  • all releases: 2s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Homepage
  • RustUse/use-archive
    1 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • CloudBranch

use-lz4

LZ4 labels, extensions, and option metadata.

This crate is part of the use-archive facade workspace. It describes LZ4-related labels and options only. It does not compress, decompress, read LZ4 frames, or write LZ4 frames.

Example

use use_lz4::{Lz4FrameKind, Lz4Profile, is_lz4_filename};

assert!(is_lz4_filename("release.tar.lz4"));
assert_eq!(Lz4FrameKind::Standard.as_str(), "standard");
assert_eq!(Lz4Profile::Speed.as_str(), "speed");