tephra-proto 0.1.0

Wire protocol (protobuf messages + length-prefixed framing) shared by the tephra TCP server and client
docs.rs failed to build tephra-proto-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

Wire protocol for the tephra TCP server and client: the protobuf message types, the length-prefixed framing, and the conversions between the wire types and the shared tephra-types vocabulary (see [convert]). This crate depends on tephra-types but not on the tephra storage engine, so a client links the wire types and the vocabulary without pulling in the engine.

The messages are defined in proto/tephra.proto and generated at build time by the official protobuf-codegen (see build.rs). Framing is a 4-byte big-endian length prefix in front of each serialized message; see the framing module.