summaryrefslogtreecommitdiffstats
path: root/examples/hello.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/hello.rs')
-rw-r--r--examples/hello.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/hello.rs b/examples/hello.rs
index 0d7a0ebc..ddbb0e45 100644
--- a/examples/hello.rs
+++ b/examples/hello.rs
@@ -13,15 +13,15 @@
extern crate env_logger;
extern crate futures;
-extern crate tokio_core;
+extern crate tokio;
extern crate tokio_io;
use std::env;
use std::net::SocketAddr;
use futures::stream::Stream;
-use tokio_core::reactor::Core;
-use tokio_core::net::TcpListener;
+use tokio::reactor::Core;
+use tokio::net::TcpListener;
fn main() {
env_logger::init().unwrap();