Added dependency on futures.
This commit is contained in:
parent
abf981c4ad
commit
342a11aba4
2 changed files with 5 additions and 3 deletions
|
@ -17,10 +17,11 @@ ctcp = []
|
||||||
nochanlists = []
|
nochanlists = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
encoding = "0.2"
|
||||||
|
futures = "0.1"
|
||||||
|
native-tls = "0.1"
|
||||||
rustc-serialize = "0.3"
|
rustc-serialize = "0.3"
|
||||||
time = "0.1"
|
time = "0.1"
|
||||||
encoding = "0.2"
|
|
||||||
native-tls = "0.1"
|
|
||||||
tokio-core = "0.1"
|
tokio-core = "0.1"
|
||||||
tokio-service = "0.1"
|
tokio-service = "0.1"
|
||||||
tokio-tls = "0.1"
|
tokio-tls = "0.1"
|
||||||
|
|
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
#![warn(missing_docs)]
|
#![warn(missing_docs)]
|
||||||
|
|
||||||
extern crate time;
|
|
||||||
extern crate encoding;
|
extern crate encoding;
|
||||||
|
extern crate futures;
|
||||||
extern crate native_tls;
|
extern crate native_tls;
|
||||||
extern crate rustc_serialize;
|
extern crate rustc_serialize;
|
||||||
|
extern crate time;
|
||||||
extern crate tokio_core;
|
extern crate tokio_core;
|
||||||
extern crate tokio_service;
|
extern crate tokio_service;
|
||||||
extern crate tokio_tls;
|
extern crate tokio_tls;
|
||||||
|
|
Loading…
Reference in a new issue