Update docs links and such

This commit is contained in:
Alex Crichton 2017-01-11 09:20:40 -08:00
parent a303a2e177
commit 6c5de5610f
3 changed files with 10 additions and 4 deletions

View File

@ -7,8 +7,8 @@ authors = ["Carl Lerche <me@carllerche.com>"]
description = """
The core `Service` trait for Tokio.
"""
documentation = "https://tokio-rs.github.io/tokio-service"
homepage = "https://github.com/tokio-rs/tokio-service"
documentation = "https://docs.rs/tokio-service"
homepage = "https://tokio.rs"
repository = "https://github.com/tokio-rs/tokio-service"
readme = "README.md"

View File

@ -5,7 +5,7 @@ Definition of the core `Service` trait in Tokio
[![Build Status](https://travis-ci.org/tokio-rs/tokio-service.svg?branch=master)](https://travis-ci.org/tokio-rs/tokio-service)
[![Build status](https://ci.appveyor.com/api/projects/status/qgostmtadmlqae8n?svg=true)](https://ci.appveyor.com/project/alexcrichton/tokio-service)
[Documentation](https://tokio-rs.github.io/tokio-service)
[Documentation](https://docs.rs/tokio-service)
## Usage
@ -22,6 +22,10 @@ Next, add this to your crate:
extern crate tokio_service;
```
You can find extensive examples and tutorials in addition to the [API
documentation](https://docs.rs/tokio-service) at
[https://tokio.rs](https://tokio.rs)
# License
`tokio-service` is primarily distributed under the terms of both the MIT

View File

@ -1,10 +1,12 @@
//! Definition of the core `Service` trait to Tokio
//!
//! More information can be found on [the trait] itself.
//! More information can be found on [the trait] itself and online at
//! [https://tokio.rs](https://tokio.rs)
//!
//! [the trait]: trait.Service.html
#![deny(missing_docs)]
#![doc(html_root_url = "https://docs.rs/tokio-service/0.1")]
extern crate futures;