1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//! Implements the [packet-stream protocol](https://github.com/ssbc/packet-stream) in rust.
#![warn(missing_docs)]

#[macro_use(try_ready)]
extern crate futures;
extern crate tokio_io;
extern crate atm_io_utils;
extern crate atm_async_utils;
extern crate void;
extern crate multi_producer_sink;
extern crate multi_consumer_stream;

#[cfg(test)]
extern crate partial_io;
#[cfg(test)]
extern crate quickcheck;
#[cfg(test)]
extern crate async_ringbuffer;
#[cfg(test)]
extern crate rand;
#[cfg(test)]
extern crate tokio;

mod codec;
mod ps;
pub use ps::*;