async-rust 0.1.0

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

use protoc_rust::Customize;

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