From 192579d62a8e8fdbc1b28d4be3f773cd306c0df0 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Sun, 31 Jul 2016 13:53:58 -0700 Subject: [PATCH] Add some descriptions --- Cargo.toml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7783e50a8..6056e19b4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,10 +2,19 @@ name = "futures-mio" version = "0.1.0" authors = ["Alex Crichton "] +license = "MIT/Apache-2.0" +readme = "README.md" +repository = "https://github.com/alexcrichton/futures-rs" +homepage = "https://github.com/alexcrichton/futures-rs" +documentation = "http://alexcrichton.com/futures-rs/futures_mio/" +description = """ +Bindings from the `futures` crate to the `mio` crate to get I/O in the form of +futures and streams. +""" [dependencies] -futures = { path = ".." } -futures-io = { path = "../futures-io" } +futures = { path = "..", version = "0.1.0" } +futures-io = { path = "../futures-io", version = "0.1.0" } log = "0.3" mio = { git = "https://github.com/alexcrichton/mio", branch = "write-then-drop" } scoped-tls = "0.1.0"