wasm-link 0.4.1

A WebAssembly plugin runtime based around Wasmtime intended for building fully modular applications
Documentation
1
2
3
4
5
6
7
8
9
(component
	(core module $m
		(func (export "run"))
	)
	(core instance $i (instantiate $m))
	(func $run (canon lift (core func $i "run")))
	(instance $root (export "run" (func $run)))
	(export "test:void/root" (instance $root))
)