1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-09-03 10:33:30 +02:00

websocket support

This commit is contained in:
Nikolay Kim
2017-10-07 21:48:00 -07:00
parent 4234f133d2
commit f2d20514fa
14 changed files with 1232 additions and 64 deletions

View File

@@ -4,12 +4,16 @@
extern crate log;
extern crate time;
extern crate bytes;
extern crate rand;
extern crate sha1;
#[macro_use]
extern crate futures;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_proto;
#[macro_use]
extern crate hyper;
extern crate unicase;
extern crate http;
extern crate httparse;
extern crate route_recognizer;
@@ -28,6 +32,10 @@ mod task;
mod reader;
mod server;
pub mod ws;
mod wsframe;
mod wsproto;
pub mod httpcodes;
pub use application::HttpApplication;
pub use route::{Route, RouteFactory, RouteHandler, Payload, PayloadItem};