reexport memory

This commit is contained in:
Lachlan Sneff
2019-01-25 15:33:15 -08:00
parent e4686e67c4
commit db3a20a76b

View File

@ -75,6 +75,7 @@
pub use wasmer_runtime_core::import::ImportObject;
pub use wasmer_runtime_core::instance::{Function, Instance};
pub use wasmer_runtime_core::memory::Memory;
pub use wasmer_runtime_core::module::Module;
pub use wasmer_runtime_core::types::Value;
pub use wasmer_runtime_core::vm::Ctx;
@ -86,7 +87,8 @@ pub use wasmer_runtime_core::imports;
pub mod wasm {
pub use wasmer_runtime_core::instance::Function;
pub use wasmer_runtime_core::types::{FuncSig, Type, Value};
pub use wasmer_runtime_core::memory::Memory;
pub use wasmer_runtime_core::types::{FuncSig, Type, Value, MemoryDesc};
}
/// Compile WebAssembly binary code into a [`Module`].