Implement UDS bindings

Closes #61
This commit is contained in:
Alex Crichton
2016-08-15 10:31:23 -07:00
parent 8327d327c1
commit 217af868e1
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ futures and streams.
futures = { path = "..", version = "0.1.0" }
futures-io = { path = "../futures-io", version = "0.1.0" }
log = "0.3"
mio = { git = "https://github.com/carllerche/mio", rev = "049d3ebd" }
mio = { git = "https://github.com/carllerche/mio" }
scoped-tls = "0.1.0"
slab = "0.2.0"
-1
View File
@@ -11,7 +11,6 @@ use mio;
use {ReadinessStream, LoopHandle};
use event_loop::Source;
/// An I/O object representing a UDP socket.
pub struct UdpSocket {
source: Arc<Source<mio::udp::UdpSocket>>,