protox 0.9.1

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

import "include/package.proto";

package com.foo.bar;


message Names {
    .foo.Foo field5 = 5; // correct
    foo.Foo field6 = 6; // incorrect: not found in com.foo
}