thruster-socketio 0.1.1

A SocketIO layer built on Thruster
Documentation
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate lazy_static;
extern crate log;

pub use thruster_socketio_proc::*;

pub mod redis_pubsub;
mod rooms;
mod sid;
mod socketio;
mod socketio_context;
mod socketio_message;
// mod socketio_parser;
mod socketio_upgrade;

pub use socketio::{adapter, SocketIOAdapter, SocketIOSocket as SocketIO};
pub use socketio_context::SocketIOContext;
pub use socketio_upgrade::handle_io;