use-warc 0.1.0

WARC and ARC web archive labels, extensions, and record metadata for RustUse
Documentation
  • Coverage
  • 100%
    24 out of 24 items documented1 out of 7 items with examples
  • Size
  • Source code size: 7.72 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 467.98 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-warc

WARC and ARC web archive labels, record kinds, and extension helpers.

This crate is part of the use-archive facade workspace. It exposes web archive primitive labels only. It does not parse WARC records, read ARC files, fetch web content, or extract payloads.

Example

use use_warc::{WarcFormat, WarcRecordKind, is_warc_filename};

assert!(is_warc_filename("crawl.warc.gz"));
assert_eq!(WarcFormat::Warc.as_str(), "warc");
assert_eq!(WarcRecordKind::Response.as_str(), "response");