Rename crate to tokio

This commit is contained in:
Carl Lerche
2017-10-30 16:37:00 -07:00
committed by Alex Crichton
parent 25f30c91c4
commit 36aaaa1520
30 changed files with 92 additions and 92 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
#![feature(test)]
extern crate futures;
extern crate tokio_core;
extern crate tokio;
#[macro_use]
extern crate tokio_io;
@@ -10,8 +10,8 @@ pub extern crate test;
mod prelude {
pub use futures::*;
pub use tokio_core::reactor::Core;
pub use tokio_core::net::{TcpListener, TcpStream};
pub use tokio::reactor::Core;
pub use tokio::net::{TcpListener, TcpStream};
pub use tokio_io::io::read_to_end;
pub use test::{self, Bencher};