tiny_rpc/lib.rs
1#![forbid(unsafe_code)]
2
3// required to use proc macros inside this crate
4extern crate self as tiny_rpc;
5#[macro_use]
6extern crate tracing;
7
8pub mod error;
9pub mod io;
10pub mod rpc;
11#[cfg(test)]
12pub mod test;
13
14pub use tiny_rpc_macros::rpc_define;
15pub use tiny_rpc_macros::rpc_trait;