wasm-tools 1.246.2

CLI tools for interoperating with WebAssembly files
Documentation
/// RUN: component wit --all-features %
package a:b;

@unstable(feature = foo)
interface foo {
  @unstable(feature = foo)
  type t = u32;
}

@unstable(feature = bar)
interface bar {
  @unstable(feature = baz)
  use foo.{t};

  @unstable(feature = qux)
  record x {
    y: t,
  }
}