use-warc 0.1.0

WARC and ARC web archive labels, extensions, and record metadata for RustUse
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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

```rust
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");
```