distrans_peer 0.1.0

Distrans p2p protocol and agent components
1
2
3
4
5
6
7
8
9
fn main() {
    // Compile Capn'Proto
    ::capnpc::CompilerCommand::new()
        .output_path("src/")
        .default_parent_module(vec!["proto".into()])
        .file("proto/distrans.capnp")
        .run()
        .expect("compiling schema");
}