git.delta.rocks / unique-network / refs/commits / 2bca9fee0736

difftreelog

source

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