wit-bindgen-cli 0.56.0

CLI tool to generate bindings for WIT documents and the component model.
//@ default-bindgen-args = false

// Note that default bindgen args, where Rust uses `--generate-all`, is
// specifically disabled for this test as that's what's being tested here.

package foo:bar;

world test {
    export foo:baz/a;
}
world runner {
    import foo:baz/a;

    export run: func();
}

package foo:baz {
  interface a {
      x: func();
  }
}