Added dependence on tokio-tls.

This commit is contained in:
Aaron Weiss 2017-01-15 17:48:49 -05:00
parent d9fc586b8c
commit db140baf9e
No known key found for this signature in database
GPG key ID: 0237035D9BF03AE2
2 changed files with 7 additions and 5 deletions

View file

@ -17,8 +17,9 @@ ctcp = []
nochanlists = []
[dependencies]
rustc-serialize = "0.3.0"
time = "0.1.0"
encoding = "0.2.0"
tokio-core = "0.1.3"
tokio-service = "0.1.0"
rustc-serialize = "0.3"
time = "0.1"
encoding = "0.2"
tokio-core = "0.1"
tokio-service = "0.1"
tokio-tls = "0.1"

View file

@ -7,6 +7,7 @@ extern crate encoding;
extern crate rustc_serialize;
extern crate tokio_core;
extern crate tokio_service;
extern crate tokio_tls;
pub mod client;
pub mod proto;