Files
pezkuwi-subxt/templates/solochain/runtime/build.rs
T
Bastian Köcher bd9287f766 wasm-builder: Make it easier to build a WASM binary (#4177)
Basically combines all the recommended calls into one
`build_using_defaults()` call or `init_with_defaults()` when there are
some custom changes required.
2024-04-22 19:28:27 +00:00

7 lines
108 B
Rust

fn main() {
#[cfg(feature = "std")]
{
substrate_wasm_builder::WasmBuilder::build_using_defaults();
}
}