wit-bindgen-cli 0.61.0

CLI tool to generate bindings for WIT documents and the component model.
import wit.test.versions.test;
import wit.common;

@witExport("test:dep/test@0.1.0", "x")
float x_v1() => 1.0;

@witExport("test:dep/test@0.1.0", "y")
float y(float a) => 1.0 + a;

@witExport("test:dep/test@0.2.0", "x")
float x_v2() => 2.0;

@witExport("test:dep/test@0.2.0", "z")
float z(float a, float b) => 2.0 + a + b;

alias Exports = wit.test.versions.test.Exports!(
    x_v1,
    y,
    x_v2,
    z
);