wit-bindgen-cli 0.56.0

CLI tool to generate bindings for WIT documents and the component model.
package my:inline;

interface t {
    flags bar {
        foo,
        bar,
        baz
    }

    get-flag: func() -> bar;
}

world test {
  export t;
}

world runner {
  import t;

  export run: func();
}