wit-bindgen-cli 0.56.0

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

interface foo-bar {
    record foo{
        something: string,
        anything: string
    }

    enum bar{
        anything,
        %type
    }

    fetch: func(x: foo, e: bar) -> string;
}

world foo-world {
    import foo-bar;
}