protobuf 1.0.11

Rust implementation of Google protocol buffers
Documentation
1
2
3
4
5
6
7
8
9
10
option optimize_for = LITE_RUNTIME;

enum EnumTestLiteRuntime {
    ONE = 1;
    TWO = 2;
}

message TestLiteRuntime {
    optional int32 v = 1;
}