Added dependence on tokio-tls.
This commit is contained in:
parent
d9fc586b8c
commit
db140baf9e
2 changed files with 7 additions and 5 deletions
11
Cargo.toml
11
Cargo.toml
|
@ -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"
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue