1 2 3 4 5 6 7 8 9
use wasm_builder::WasmBuilder; fn main() { WasmBuilder::new() .with_current_project() .export_heap_base() .import_memory() .build() }