Added dependency on tokio 0.1.

This commit is contained in:
Ratys 2018-06-08 16:41:13 +03:00
parent 7d8feafb52
commit efd13d5a13
2 changed files with 2 additions and 0 deletions

View file

@ -39,6 +39,7 @@ serde = "1.0"
serde_derive = "1.0"
serde_json = { version = "1.0", optional = true }
serde_yaml = { version = "0.7", optional = true }
tokio = "0.1"
tokio-core = "0.1"
tokio-io = "0.1"
tokio-mockstream = "1.1"

View file

@ -59,6 +59,7 @@ extern crate serde_derive;
extern crate serde_json;
#[cfg(feature = "yaml")]
extern crate serde_yaml;
extern crate tokio;
extern crate tokio_core;
extern crate tokio_io;
extern crate tokio_mockstream;