wit-bindgen-cli 0.57.0

CLI tool to generate bindings for WIT documents and the component model.
package foo:bar@1.2.3;

interface bindings {
    @unstable(feature = x)
    x: func();
    @unstable(feature = y)
    y: func();
    @since(version = 1.2.3)
    z: func();
}

world test {
  export bindings;
}
world runner {
  import bindings;

  export run: func();
}