wasm-link 0.2.3

A WebAssembly plugin runtime based around Wasmtime intended for building fully modular applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
(component
	(core module $m
		(func $trap (export "trap")
			unreachable
		)
	)
	(core instance $i (instantiate $m))
	(func $f (export "trap") (canon lift (core func $i "trap")))
	(instance $inst
		(export "trap" (func $f))
	)
	(export "test:dispatch-error/root" (instance $inst))
)