protobuf 1.0.10

Rust implementation of Google protocol buffers
Documentation
1
2
3
4
5
6
7
8
9
10
#![crate_type = "bin"]

extern crate protobuf;

use protobuf::codegen;


fn main() {
    codegen::protoc_gen_rust_main();
}