wit-bindgen-cli 0.57.0

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

world runner {
  import cat: interface {
    type my-list = list<u8>;
    foo: func(x: my-list);
    bar: func() -> my-list;
  }

  export run: func();
}

world test {
  export cat: interface {
    type my-list = list<u8>;
    foo: func(x: my-list);
    bar: func() -> my-list;
  }
}