rotor-http 0.7.0

The mio-based http server (+with http client and websockets planned)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(feature="nightly", feature(test))]

extern crate rotor;
extern crate httparse;
extern crate rotor_stream;
#[cfg(feature="nightly")] extern crate test;
#[cfg(test)] extern crate rotor_test;
#[macro_use] extern crate quick_error;
#[macro_use] extern crate matches;
#[macro_use] extern crate log;

pub mod server;
pub mod client;
mod message;
mod recvmode;
mod headers;
mod version;