prost-msg-build 0.1.6

A Protocol Buffers implementation for the Rust Language.
Documentation
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

package helloworld;

message Message {
  string say = 1;
}

message Response {
  string say = 1;
}