qrpc-sdk 0.1.0

A client SDK to build qrpc (qaul rpc) extensions
Documentation
use capnpc::CompilerCommand as Cc;

fn main() {
    Cc::new()
        .file("schema/base.capnp") // base wire wrapper
        .file("schema/types.capnp") // sdk-data types
        .file("schema/cap.capnp") // rpc-api types
        .run()
        .expect("Failed compiling schema/carrier.capnp!");
}