summaryrefslogtreecommitdiffstats
path: root/examples/chat.rs
diff options
context:
space:
mode:
authorCarl Lerche <me@carllerche.com>2017-10-24 16:30:16 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-10-30 16:37:00 -0700
commit36aaaa152003e10599fb0c8804c1abbfa11bbbef (patch)
tree8a4ead369b9082a42e766829df7f9b57b913e351 /examples/chat.rs
parent25f30c91c44aaa6adc2530cad8a8bdb9e0b99f90 (diff)
Rename crate to tokio
Diffstat (limited to 'examples/chat.rs')
-rw-r--r--examples/chat.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/chat.rs b/examples/chat.rs
index 039fb685..ff364476 100644
--- a/examples/chat.rs
+++ b/examples/chat.rs
@@ -18,7 +18,7 @@
//! messages.
extern crate futures;
-extern crate tokio_core;
+extern crate tokio;
extern crate tokio_io;
use std::collections::HashMap;
@@ -30,8 +30,8 @@ use std::io::{Error, ErrorKind, BufReader};
use futures::Future;
use futures::stream::{self, Stream};
-use tokio_core::net::TcpListener;
-use tokio_core::reactor::Core;
+use tokio::net::TcpListener;
+use tokio::reactor::Core;
use tokio_io::io;
use tokio_io::AsyncRead;