Skip to main content

protosocket_prost/
lib.rs

1//! Conveniences for using protocol buffers via `prost` with `protosocket`.
2//!
3//! See the example-proto directory for a complete example of how to use this crate.
4
5#![deny(missing_docs)]
6
7mod error;
8mod prost_client_registry;
9mod prost_serializer;
10
11pub use error::{Error, Result};
12pub use prost_client_registry::ClientRegistry;
13pub use prost_serializer::{ProstDecoder, ProstSerializer};