summaryrefslogtreecommitdiffstats
path: root/examples/udp-codec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/udp-codec.rs')
-rw-r--r--examples/udp-codec.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/udp-codec.rs b/examples/udp-codec.rs
index bd243090..4066060e 100644
--- a/examples/udp-codec.rs
+++ b/examples/udp-codec.rs
@@ -6,7 +6,7 @@
//! new message with a new destination. Overall, we then use this to construct a
//! "ping pong" pair where two sockets are sending messages back and forth.
-extern crate tokio_core;
+extern crate tokio;
extern crate env_logger;
extern crate futures;
@@ -14,8 +14,8 @@ use std::io;
use std::net::SocketAddr;
use futures::{Future, Stream, Sink};
-use tokio_core::net::{UdpSocket, UdpCodec};
-use tokio_core::reactor::Core;
+use tokio::net::{UdpSocket, UdpCodec};
+use tokio::reactor::Core;
pub struct LineCodec;