1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! A WARC (Web ARChive) library

pub mod error;
pub use error::Error;

mod file;
pub use file::File;

pub mod header;

pub mod parser;

mod record;
pub use record::Record;

mod record_type;
pub use record_type::RecordType;

mod truncated_type;
pub use truncated_type::TruncatedType;