async-rust 0.1.1

async rust examples
1
2
3
4
5
6
7
8
9
10
11
//extern crate protoc_rust;



fn main() {
    protoc_rust::Codegen::new()
        .out_dir(".")
        .inputs(&["message.proto"])
        .run()
        .expect("protoc");
}