1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#![deny(missing_docs)]
#![deny(warnings)]
#![cfg_attr(feature = "nightly", feature(slice_align_to))]
#![cfg_attr(feature = "nightly", feature(test))]
#![cfg_attr(feature = "cargo-clippy", feature(tool_lints))]
extern crate base64;
extern crate byteorder;
extern crate bytes;
extern crate futures;
extern crate httparse;
extern crate rand;
extern crate sha1;
extern crate take_mut;
extern crate tokio_codec;
extern crate tokio_io;
extern crate tokio_tcp;
extern crate url;
#[cfg(test)]
#[macro_use]
extern crate quickcheck;
#[cfg(all(feature = "nightly", test))]
extern crate test;
#[cfg(feature = "ssl-native-tls")]
extern crate native_tls;
#[cfg(feature = "ssl-native-tls")]
extern crate tokio_tls;
#[cfg(feature = "ssl-openssl")]
extern crate openssl;
#[cfg(feature = "ssl-openssl")]
extern crate tokio_openssl;
use std::error;
use std::result;
pub type Error = Box<error::Error + Sync + Send + 'static>;
pub type Result<T> = result::Result<T, Error>;
mod client;
mod frame;
mod mask;
mod message;
mod opcode;
mod ssl;
mod upgrade;
pub use client::{AsyncNetworkStream, Client, ClientBuilder};
pub use message::{Message, MessageCodec};
pub use opcode::Opcode;