aboutsummaryrefslogtreecommitdiffstats
path: root/src/timer.rs
diff options
context:
space:
mode:
authorJake McGinty <me@jake.su>2018-05-17 18:40:00 -0700
committerJake McGinty <me@jake.su>2018-05-17 19:44:58 -0700
commit39a0e8fc61c6af21b247e4ef97370a225bde1585 (patch)
tree49bcd3142c4afd09a844f1e0246a287b122b27e0 /src/timer.rs
parentdeps: upgrade to subtle 0.6 (diff)
downloadwireguard-rs-39a0e8fc61c6af21b247e4ef97370a225bde1585.tar.xz
wireguard-rs-39a0e8fc61c6af21b247e4ef97370a225bde1585.zip
global: don't directly rely on tokio 'meta' crate
Diffstat (limited to 'src/timer.rs')
-rw-r--r--src/timer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/timer.rs b/src/timer.rs
index dc6188a..aea41e9 100644
--- a/src/timer.rs
+++ b/src/timer.rs
@@ -2,7 +2,7 @@ use consts::TIMER_RESOLUTION;
use futures::{Future, Stream, Sink, Poll, unsync};
use std::{cell::RefCell, rc::Rc};
use std::time::{Instant, Duration};
-use tokio::timer::Delay;
+use tokio_timer::Delay;
use tokio_core::reactor::Handle;
use interface::WeakSharedPeer;