wasm-bridge 0.1.0

Run WASM modules on desktop or on the web using wasmtime's API
Documentation
mod engine;
pub use engine::*;

mod error;
pub use error::*;

mod instance;
pub use instance::*;

mod module;
pub use module::*;

mod store;
pub use store::*;

mod typed_func;
pub use typed_func::*;

mod conversions;
pub use conversions::*;

mod linker;
pub use linker::*;

mod caller;
pub use caller::*;