2020-03-05 16:53:25 +00:00
|
|
|
use wasm_builder_runner::WasmBuilder;
|
2019-08-29 15:44:46 +00:00
|
|
|
|
|
|
|
fn main() {
|
2020-03-05 16:53:25 +00:00
|
|
|
WasmBuilder::new()
|
|
|
|
.with_current_project()
|
|
|
|
.with_wasm_builder_from_crates("1.0.9")
|
|
|
|
.export_heap_base()
|
|
|
|
.import_memory()
|
|
|
|
.build()
|
2019-08-29 15:44:46 +00:00
|
|
|
}
|