├── .gitignore ├── LICENSE └── src ├── coder.zig ├── main.zig └── types.zig /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | /zig-cache 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengb/zig-protobuf/HEAD/LICENSE -------------------------------------------------------------------------------- /src/coder.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengb/zig-protobuf/HEAD/src/coder.zig -------------------------------------------------------------------------------- /src/main.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengb/zig-protobuf/HEAD/src/main.zig -------------------------------------------------------------------------------- /src/types.zig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fengb/zig-protobuf/HEAD/src/types.zig --------------------------------------------------------------------------------