summaryrefslogtreecommitdiffstats
path: root/examples/tinydb.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/tinydb.rs
parent25f30c91c44aaa6adc2530cad8a8bdb9e0b99f90 (diff)
Rename crate to tokio
Diffstat (limited to 'examples/tinydb.rs')
-rw-r--r--examples/tinydb.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/tinydb.rs b/examples/tinydb.rs
index fe7865c3..61d0fd62 100644
--- a/examples/tinydb.rs
+++ b/examples/tinydb.rs
@@ -40,7 +40,7 @@
//! returning the previous value, if any.
extern crate futures;
-extern crate tokio_core;
+extern crate tokio;
extern crate tokio_io;
use std::cell::RefCell;
@@ -51,8 +51,8 @@ use std::env;
use std::net::SocketAddr;
use futures::prelude::*;
-use tokio_core::net::TcpListener;
-use tokio_core::reactor::Core;
+use tokio::net::TcpListener;
+use tokio::reactor::Core;
use tokio_io::AsyncRead;
use tokio_io::io::{lines, write_all};