wasm-tools 1.251.0

CLI tools for interoperating with WebAssembly files
Documentation
// FAIL: component embed --dummy --wat %
package test:root;

package test:foo1 {
  interface bar {
    baz: func(s: string) -> string;
  }
}

package test:foo2 {
  interface bar {
    baz: func(s: string) -> string;
  }
  world some-other-world {
    import test:foo1/bar;
    export bar;
  }
}

package test:hola {
  world hello {
    import test:foo1/bar;
    export test:foo2/bar;
  }
}