use-xz 0.1.0

XZ labels and option metadata for RustUse
Documentation
  • Coverage
  • 100%
    18 out of 18 items documented1 out of 7 items with examples
  • Size
  • Source code size: 5.57 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 433.2 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 5s Average build duration of successful builds.
  • all releases: 5s 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-xz

XZ labels, extensions, and option metadata.

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

Example

use use_xz::{XzCheckType, XzOptions, XZ_EXTENSION};

let options = XzOptions::default().with_check_type(XzCheckType::Crc64);

assert_eq!(XZ_EXTENSION, "xz");
assert_eq!(options.check_type, XzCheckType::Crc64);