wasi-worker-cli 0.6.0

Tool to create and deploy WASM WASI-based browser service workers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Tool to create and deploy WASM WASI-based browser service workers
//!
//! This tool provides JavaScript glue for browser service workers built with [wasi-worker](https://crates.io/crates/wasi-worker) library.
//! [More details](https://crates.io/crates/wasi-worker-cli)
//!

mod cli;
mod gc;
#[cfg(test)]
mod test;

pub use cli::Cli;
pub use gc::gc;