capnp-rpc 0.12.0

implementation of the Cap'n Proto remote procedure call protocol
Documentation
1
2
3
4
5
6
7
8
9
extern crate capnpc;

fn main() {
    capnpc::CompilerCommand::new()
        .src_prefix("schema")
        .file("schema/rpc.capnp")
        .file("schema/rpc-twoparty.capnp")
        .run().expect("capnp compile");
}