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
5mod error;
6mod prost_client_registry;
7mod prost_serializer;
8
9pub use error::{Error, Result};
10pub use prost_client_registry::ClientRegistry;
11pub use prost_serializer::{ProstDecoder, ProstSerializer};