wit-bindgen-cli 0.56.0

CLI tool to generate bindings for WIT documents and the component model.
package unused:%import;

interface types {
    record r {
        a: list<u8>,
    }
}

world the-world {
    import foo: interface {
      use types.{r};

      foo: func(data: r);
    }

    export bar: interface {
      use types.{r};
    }
}