Removed tokio-service dependency, added tokio-mockstream.

This commit is contained in:
Aaron Weiss 2017-06-21 19:07:59 -04:00
parent 3369ef5ff2
commit 2087e83e79
No known key found for this signature in database
GPG key ID: 0237035D9BF03AE2
2 changed files with 3 additions and 3 deletions

View file

@ -29,5 +29,5 @@ serde_derive = "1.0"
serde_json = "1.0"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-service = "0.1"
tokio-mockstream = "1.0"
tokio-tls = "0.1"

View file

@ -15,9 +15,9 @@ extern crate serde;
extern crate serde_derive;
extern crate serde_json;
extern crate time;
extern crate tokio_io;
extern crate tokio_core;
extern crate tokio_service;
extern crate tokio_io;
extern crate tokio_mockstream;
extern crate tokio_tls;
pub mod client;