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 decoder;
8mod error;
9mod serializer;
10
11pub use decoder::ProstDecoder;
12pub use error::{Error, Result};
13pub use serializer::ProstSerializer;