protox 0.9.1

A rust implementation of the protobuf compiler.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
syntax = "proto2";

extend Bar {
    optional group Baz = 1 {}
}

message Bar {
    extensions 1;

    map<int32, string> x = 5;

    oneof foo { // foo
        group Quz = 3 {}
    }

    message Nest {}
}