From 6c5de5610fb966f59aa7b6b49f2124a4edd9a975 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 11 Jan 2017 09:20:40 -0800 Subject: [PATCH] Update docs links and such --- Cargo.toml | 4 ++-- README.md | 6 +++++- src/lib.rs | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 71be5ab..70a5599 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,8 +7,8 @@ authors = ["Carl Lerche "] 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" diff --git a/README.md b/README.md index 7b90f4f..c08a3d8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/lib.rs b/src/lib.rs index 0c713e9..b4931d4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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;