camel-dataformat-protobuf 0.9.0

Protobuf DataFormat for rust-camel (JSON <-> protobuf wire format)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";
package helloworld;

service Greeter {
  rpc SayHello (HelloRequest) returns (HelloReply) {}
}

message HelloRequest {
  string name = 1;
}

message HelloReply {
  string message = 1;
}