wasm-link 0.3.0

A WebAssembly plugin runtime based around Wasmtime intended for building fully modular applications
Documentation
1
2
3
4
5
6
#[macro_export]
macro_rules! assert_no_warnings {
	( $warnings:expr ) => {
		if !$warnings.is_empty() { panic!( "Produced warnings: {:?}", $warnings ) }
	};
}