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 = []
|
nochanlists = []
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
rustc-serialize = "0.3.0"
|
rustc-serialize = "0.3"
|
||||||
time = "0.1.0"
|
time = "0.1"
|
||||||
encoding = "0.2.0"
|
encoding = "0.2"
|
||||||
tokio-core = "0.1.3"
|
tokio-core = "0.1"
|
||||||
tokio-service = "0.1.0"
|
tokio-service = "0.1"
|
||||||
|
tokio-tls = "0.1"
|
||||||
|
|
|
@ -7,6 +7,7 @@ extern crate encoding;
|
||||||
extern crate rustc_serialize;
|
extern crate rustc_serialize;
|
||||||
extern crate tokio_core;
|
extern crate tokio_core;
|
||||||
extern crate tokio_service;
|
extern crate tokio_service;
|
||||||
|
extern crate tokio_tls;
|
||||||
|
|
||||||
pub mod client;
|
pub mod client;
|
||||||
pub mod proto;
|
pub mod proto;
|
||||||
|
|
Loading…
Add table
Reference in a new issue