tiny-rpc 0.3.2

A small and easy to use RPC framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]

// required to use proc macros inside this crate
extern crate self as tiny_rpc;
#[macro_use]
extern crate tracing;

pub mod error;
pub mod io;
pub mod rpc;
#[cfg(test)]
pub mod test;

pub use tiny_rpc_macros::rpc_define;
pub use tiny_rpc_macros::rpc_trait;