camel-dataformat-protobuf 0.28.0

Protobuf DataFormat for rust-camel (JSON <-> protobuf wire format)
Documentation
1
2
3
4
5
6
7
syntax = "proto3";
package test;
// Recursive schema used by test_unmarshal_recursive_schema_hits_recursion_limit
// to prove prost's built-in RECURSION_LIMIT=100 fires.
message Node {
  Node child = 1;
}