summaryrefslogtreecommitdiffstats
path: root/src/udp.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2016-08-26 14:30:46 -0700
committerAlex Crichton <alex@alexcrichton.com>2016-08-26 14:39:47 -0700
commitf107c8d860137b41e509b179d605db30082cb0da (patch)
tree063e7b0c86785f70a63458e17183602e58d9c7f3 /src/udp.rs
parente71d509fee767d6b796ba18a5501f80f0fb4babc (diff)
Rename to tokio-core, add in futures-io
Renames the futures-mio crate to tokio-core, pulls in the futures-io crate under an `io` module, and gets everything compiling.
Diffstat (limited to 'src/udp.rs')
-rw-r--r--src/udp.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udp.rs b/src/udp.rs
index 5a0de2b5..b0a4dc6f 100644
--- a/src/udp.rs
+++ b/src/udp.rs
@@ -3,10 +3,10 @@ use std::net::{self, SocketAddr, Ipv4Addr, Ipv6Addr};
use std::fmt;
use futures::{Future, failed, Poll};
-use futures_io::IoFuture;
use mio;
use {ReadinessStream, LoopHandle};
+use io::IoFuture;
/// An I/O object representing a UDP socket.
pub struct UdpSocket {