protox 0.9.1

A rust implementation of the protobuf compiler.
Documentation
1
2
3
4
5
6
7
8
9
syntax = "proto2";

message Message {
    oneof oneof {
        group Group = 1 {
            optional int32 bar = 1;
        }
    }
}