protosocket-rpc 1.0.0

RPC using protosockets
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]
#![deny(missing_docs)]

mod error;
mod message;

pub mod client;
pub mod server;

pub use error::{Error, Result};
pub use message::{Message, ProtosocketControlCode};