webc 11.0.0

WebContainer implementation for wapm.io
Documentation
//! Parsing code for v3 of the WEBC format.
#![allow(missing_docs)]

mod checksum;
mod index;
pub mod read;
mod signature;
mod span;
mod tags;
mod timestamps;
pub mod write;

pub use self::{
    checksum::{Checksum, ChecksumAlgorithm},
    index::{Index, IndexEntry},
    signature::{Signature, SignatureAlgorithm, SignatureError},
    span::Span,
    tags::Tag,
    timestamps::Timestamps,
};