wasmer/lib/runtime/src/lib.rs

29 lines
634 B
Rust
Raw Normal View History

2019-01-08 17:09:47 +00:00
#[macro_use]
mod macros;
mod backend;
mod backing;
mod instance;
mod memory;
mod sig_registry;
mod table;
mod recovery;
mod sighandler;
pub mod mmap;
pub mod module;
2019-01-08 17:09:47 +00:00
pub mod types;
pub mod vm;
pub mod vmcalls;
pub use self::backend::{Compiler, FuncResolver};
pub use self::instance::{Import, ImportResolver, Imports, Instance};
pub use self::module::{Module, ModuleInner};
2019-01-08 17:09:47 +00:00
pub use self::sig_registry::SigRegistry;
pub use self::memory::LinearMemory;
/// Compile a webassembly module using the provided compiler.
pub fn compile(
wasm: &[u8],
compiler: &dyn Compiler,
) -> Result<Module, String> {
compiler.compile(wasm)
}