* Bump mio

* Fixed warnings

* Update mio to crates.
This commit is contained in:
Arkadiy Paronyan
2017-06-05 20:40:40 +02:00
committed by GitHub
parent 815f427c95
commit ad6ea4fa49
7 changed files with 30 additions and 77 deletions

View File

@@ -82,18 +82,6 @@ extern crate pretty_assertions;
#[cfg(windows)] extern crate ws2_32;
#[cfg(windows)] extern crate winapi;
macro_rules! dependency {
($dep_ty:ident, $url:expr) => {
{
let dep = boot::dependency::<$dep_ty<_>>($url)
.unwrap_or_else(|e| panic!("Fatal: error connecting service ({:?})", e));
dep.handshake()
.unwrap_or_else(|e| panic!("Fatal: error in connected service ({:?})", e));
dep
}
}
}
mod account;
mod blockchain;
mod cache;