rmp-rpc 0.3.0

a msgpack-rpc client and server based on tokio
Documentation
//! This crate provides facilities to use the `MessagePack` remote procedure call system
//! (`MessagePack-RPC`) in Rust.

extern crate bytes;
extern crate futures;
#[macro_use]
extern crate log;
extern crate rmpv;
extern crate tokio;

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

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