anybuf 0.1.0

A minimal, zero dependency proto3 encoder to encode anything.
Documentation
1
2
3
4
5
6
7
8
9
10
11
syntax = "proto3";

message Lights {
  bool on = 3;
}

message Room {
  uint32 number = 1;
  Lights lights = 2;
  uint64 size = 3;
}