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;
8mod prost_socket;
9
10pub use error::{Error, Result};
11pub use prost_client_registry::ClientRegistry;
12pub use prost_serializer::ProstSerializer;
13pub use prost_socket::ProstClientConnectionBindings;
14pub use prost_socket::ProstServerConnectionBindings;