git.delta.rocks / unique-network / refs/commits / 41c4d38c3511

difftreelog

source

runtime/build.rs227 Bsourcehistory
1use wasm_builder_runner::WasmBuilder;23fn main() {4    WasmBuilder::new()5        .with_current_project()6        .with_wasm_builder_from_crates("1.0.11")7        .export_heap_base()8        .import_memory()9        .build()10}