38 releases (23 stable)

new 6.0.0-alpha5 May 1, 2024
5.8.1 Nov 22, 2023
5.2.2 Jul 27, 2023
5.0.0-rc.7 Mar 28, 2023
0.4.1 Dec 13, 2022

#43 in WebAssembly

Download history 8972/week @ 2024-01-11 17558/week @ 2024-01-18 9133/week @ 2024-01-25 15430/week @ 2024-02-01 9512/week @ 2024-02-08 6455/week @ 2024-02-15 7866/week @ 2024-02-22 8454/week @ 2024-02-29 9606/week @ 2024-03-07 10148/week @ 2024-03-14 7146/week @ 2024-03-21 10933/week @ 2024-03-28 11650/week @ 2024-04-04 15995/week @ 2024-04-11 8802/week @ 2024-04-18 8123/week @ 2024-04-25

46,737 downloads per month
Used in 32 crates (15 directly)

MIT and maybe LGPL-2.0-or-later

595KB
14K SLoC

A library for reading and writing WEBC files.

The Container provides an abstraction over the various WEBC versions this crate can handle. As such, it tries to cater to the lowest common denominator and favors portability over performance or power.

use webc::Container;
let bytes: &[u8] = b"\0webc...";

let container = Container::from_bytes(bytes)?;

println!("{:?}", container.manifest());

println!("Atoms:");
for (name, atom) in container.atoms() {
    let length = atom.len();
    println!("{name}: {length} bytes");
}

for (name, volume) in container.volumes() {
    let root_items = volume.read_dir("/").expect("The root directory always exists");
    println!("{name}: {} items", root_items.len());
}

In general, errors that occur during lazy operations won't be accessible to the user.

Version-Specific Fallbacks

If more flexibility is required, consider using [crate::detect()] and instantiating a compatible parser directly.

use webc::{
    Container,
    Version,
};
use webc::v1::{ParseOptions, WebC};
use webc::v3::read::OwnedReader;
let bytes: &[u8] = b"...";

match webc::detect(bytes) {
    Ok(Version::V1) => {
        let options = ParseOptions::default();
        let webc = WebC::parse(bytes, &options).unwrap();
        if let Some(signature) = webc.signature {
            println!("Package signature: {:?}", signature);
        }
    }
    Ok(Version::V3) => {
        let webc = OwnedReader::parse(bytes).unwrap();
        let index = webc.index();
        let signature = &index.signature;
        if !signature.is_none() {
            println!("Package signature: {signature:?}");
        }
    }
    Ok(other) => todo!("Unsupported version, {other}"),
    Err(e) => todo!("An error occurred: {e}"),
}

Feature Flags

Dependencies

~7–23MB
~348K SLoC