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
+2 -2
View File
@@ -4,7 +4,7 @@ extern crate env_logger;
extern crate futures;
extern crate libc;
extern crate mio;
extern crate tokio_core;
extern crate tokio;
extern crate tokio_io;
use std::fs::File;
@@ -16,7 +16,7 @@ use std::time::Duration;
use mio::unix::{UnixReady, EventedFd};
use mio::{PollOpt, Ready, Token};
use mio::event::Evented;
use tokio_core::reactor::{Core, PollEvented};
use tokio::reactor::{Core, PollEvented};
use tokio_io::io::read_to_end;
macro_rules! t {