From 304914b707cbf85f3b5e28645b0caa65e0de46b0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Fri, 5 Aug 2016 09:53:50 -0700 Subject: [PATCH] Start brushing up io/mio docs --- src/lib.rs | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 1aac03654..b545ce6a0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,10 +1,7 @@ -//! A binding to mio giving it a future/stream interface on top. +//! Mio bindings with streams and futures //! -//! This library contains the rudimentary bindings to an event loop in mio which -//! provides future and stream-based abstractions of all the underlying I/O -//! objects that mio provides internally. -//! -//! Currently very much a work in progress, and breakage should be expected! +//! This crate uses the `futures_io` and `futures` crates to provide a thin +//! binding on top of mio of TCP and UDP sockets. #![deny(missing_docs)]