#![warn(missing_docs)]
#[macro_use] extern crate log;
#[macro_use] extern crate serde_derive;
extern crate serde;
extern crate serde_json;
pub extern crate futures;
mod calls;
mod io;
mod middleware;
pub mod types;
pub type BoxFuture<T, E> = Box<futures::Future<Item = T, Error = E> + Send>;
pub use calls::{RemoteProcedure, Metadata, RpcMethodSync, RpcMethodSimple, RpcMethod, RpcNotificationSimple, RpcNotification};
pub use io::{Compatibility, IoHandler, MetaIoHandler, FutureResponse};
pub use middleware::{Middleware, Noop as NoopMiddleware};
pub use types::*;