1
2
3
4
5
6
7
8
9
extern crate base64;
extern crate nom;

// This library implements the engine.io protocol revision 3.
pub const PROTOCOL: u8 = 3;

pub mod binary;
pub mod packet;
pub mod string;