framestream 0.1.2

Frame Streams implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]

extern crate byteorder;
extern crate bytes;

mod constants;
mod encoder;

pub use encoder::EncoderWriter;

#[cfg(test)]
mod tests;