glutton-runtime 1.0.0

glutton-runtime
1
2
3
4
5
6
7
8
9
use substrate_wasm_builder::WasmBuilder;

fn main() {
	WasmBuilder::new()
		.with_current_project()
		.export_heap_base()
		.import_memory()
		.build()
}