msgpack-rpc 0.4.2

a msgpack-rpc client and server based on tokio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! This crate provides facilities to use the `MessagePack` remote procedure call system
//! (`MessagePack-RPC`) in Rust.

#[macro_use]
extern crate log;

mod codec;
mod endpoint;
mod errors;
pub mod message;

pub use crate::endpoint::{serve, Ack, Client, Endpoint, Response, Service, ServiceWithClient};
pub use crate::errors::DecodeError;
pub use rmpv::{Integer, Utf8String, Value};