diff --git a/Cargo.toml b/Cargo.toml index 5dbb90038..bbe62eafd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,10 +5,15 @@ authors = ["Alex Crichton "] license = "MIT/Apache-2.0" repository = "https://github.com/alexcrichton/tokio-process" homepage = "https://github.com/alexcrichton/tokio-process" -documentation = "https://docs.rs/tokio-process/0.2" +documentation = "https://docs.rs/tokio-process" description = """ An implementation of an asynchronous process management backed futures. """ +categories = ["asynchronous"] + +[badges] +travis-ci = { repository = "alexcrichton/tokio-process" } +appveyor = { repository = "alexcrichton/tokio-process" } [dependencies] tokio-core = "0.1.2" diff --git a/README.md b/README.md index 0e4f61206..9da882340 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ An implementation of process management for Tokio [![Build status](https://ci.appveyor.com/api/projects/status/43c8g7fy801e5902?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-process) [![Crates.io](https://img.shields.io/crates/v/tokio-process.svg?maxAge=2592000)](https://crates.io/crates/tokio-process) -[Documentation](https://docs.rs/tokio-process/0.1) +[Documentation](https://docs.rs/tokio-process) ## Usage diff --git a/src/lib.rs b/src/lib.rs index 954d7eb46..f17a36259 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -81,6 +81,7 @@ //! be regained with the `Child::forget` method. #![deny(missing_docs)] +#![doc(html_root_url = "https://docs.rs/tokio-process/0.1")] #[macro_use] extern crate futures;