Added dependency on futures.

This commit is contained in:
Aaron Weiss 2017-01-15 18:10:35 -05:00
parent abf981c4ad
commit 342a11aba4
No known key found for this signature in database
GPG key ID: 0237035D9BF03AE2
2 changed files with 5 additions and 3 deletions

View file

@ -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"

View file

@ -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;