From 342a11aba4a7c5896b0a2ed052639c9717263483 Mon Sep 17 00:00:00 2001 From: Aaron Weiss Date: Sun, 15 Jan 2017 18:10:35 -0500 Subject: [PATCH] Added dependency on futures. --- Cargo.toml | 5 +++-- src/lib.rs | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) 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;