wrpc 0.16.0

WebAssembly component-native RPC framework based on WIT
Documentation
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;
}