rndz 0.1.3

A simple rendezvous protocol implementation to help NAT traversal or hole punching.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//extern crate protobuf_codegen_pure;

fn main() {
    if std::env::var("DOCS_RS").is_ok() {
        return;
    }
    protobuf_codegen_pure::Codegen::new()
        .out_dir("src/proto")
        .inputs(&["proto/rndz.proto"])
        .include("proto")
        .run()
        .expect("Codegen failed.");
}