aboutsummaryrefslogtreecommitdiffstats
path: root/src/peer.rs
diff options
context:
space:
mode:
authorJake McGinty <me@jake.su>2018-05-03 14:29:59 -0700
committerJake McGinty <me@jake.su>2018-05-03 14:29:59 -0700
commit6aa9d9e08f41306f878b7e584dad211a7d4b901a (patch)
tree29923feaa01f26a2663deb29f5e33e55428b869a /src/peer.rs
parentconfig: refactor to send more specific messages to peer_server on change (diff)
downloadwireguard-rs-6aa9d9e08f41306f878b7e584dad211a7d4b901a.tar.xz
wireguard-rs-6aa9d9e08f41306f878b7e584dad211a7d4b901a.zip
global: time.rs -> timestamp.rs
Diffstat (limited to 'src/peer.rs')
-rw-r--r--src/peer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peer.rs b/src/peer.rs
index 4899893..f01ac5e 100644
--- a/src/peer.rs
+++ b/src/peer.rs
@@ -14,7 +14,7 @@ use std::collections::VecDeque;
use std::fmt::{self, Debug, Display, Formatter};
use std::time::{SystemTime, UNIX_EPOCH};
use hex;
-use time::{Tai64n, Timestamp};
+use timestamp::{Tai64n, Timestamp};
use snow;
use types::PeerInfo;
use udp::Endpoint;