wit-bindgen-cli 0.57.1

CLI tool to generate bindings for WIT documents and the component model.
//@ dependencies = ['test', 'leaf']
//@ wac = 'compose.wac'

package my:inline;

interface foo {
    record a {
      b: u8,
    }

    bar: func(a: a);
}

world leaf {
    export foo;
}

world test {
    import foo;
    export foo;
}

world runner {
    import foo;

    export run: func();
}