wrpc 0.16.0

WebAssembly component-native RPC framework based on WIT
Documentation
package wrpc-examples:resources;

interface resources {
    resource foo {
        constructor();
        foo: static func(v: foo) -> string;
        bar: func() -> string;
    }

    bar: func(v: borrow<foo>) -> string;
}

world client {
    import resources;
}

world server {
    export resources;
}