diff --git a/Cargo.toml b/Cargo.toml index 9649388..21c2c95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,10 +17,11 @@ ctcp = [] nochanlists = [] [dependencies] +encoding = "0.2" +futures = "0.1" +native-tls = "0.1" rustc-serialize = "0.3" time = "0.1" -encoding = "0.2" -native-tls = "0.1" tokio-core = "0.1" tokio-service = "0.1" tokio-tls = "0.1" diff --git a/src/lib.rs b/src/lib.rs index 733c323..281a131 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,10 +2,11 @@ #![warn(missing_docs)] -extern crate time; extern crate encoding; +extern crate futures; extern crate native_tls; extern crate rustc_serialize; +extern crate time; extern crate tokio_core; extern crate tokio_service; extern crate tokio_tls;