amp-async 0.1.3

Implementation of the AMP remoting protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![warn(rust_2018_idioms)]

mod codecs;
mod error;
mod frame;
mod server;

pub use codecs::Dec as Decoder;
pub use error::*;
pub use frame::*;
pub use server::*;