wit-bindgen-cli 0.57.1

CLI tool to generate bindings for WIT documents and the component model.
pub mod a {
    wit_bindgen::generate!({
        world: "a",
        path: "./test.wit",
        default_bindings_module: "rust_xcrate_test::a",
        pub_export_macro: true,
        export_macro_name: "export_a",
    });
}

pub mod b {
    wit_bindgen::generate!({
        world: "b",
        path: "./test.wit",
        default_bindings_module: "rust_xcrate_test::b",
        pub_export_macro: true,
        export_macro_name: "export_b",
    });
}