wasm-tools 1.251.0

CLI tools for interoperating with WebAssembly files
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// RUN[legacy]: component embed -t --dummy-names legacy % | strip -t
// RUN[standard32]: component embed -t --dummy-names standard32 % | strip -t

package a:b;

interface x {
  y: func() -> string;
}

world w {
  import x;
  export x;
}