wit-bindgen-cli 0.57.1

CLI tool to generate bindings for WIT documents and the component model.
//@ async = true

package a:b;

world w {
    import i;
    export i;
}

interface i {
    use t.{r};
    f: func(p: stream<r>);
}

interface t {
    record r {
        x: u32,
    }
}