Update Docs link and bump to 0.1.1

docs.rs cannot build nightly documentation
This commit is contained in:
Yong Wen Chua 2017-07-18 18:26:32 +08:00
parent 8fc8fef3eb
commit 539157e0f0
3 changed files with 4 additions and 4 deletions

View File

@ -1,13 +1,13 @@
[package] [package]
name = "rocket_cors" name = "rocket_cors"
version = "0.1.0" version = "0.1.1"
license = "Apache-2.0" license = "Apache-2.0"
authors = ["Yong Wen Chua <me@yongwen.xyz>"] authors = ["Yong Wen Chua <me@yongwen.xyz>"]
build = "build.rs" build = "build.rs"
description = "Cross-origin resource sharing (CORS) for Rocket.rs applications" description = "Cross-origin resource sharing (CORS) for Rocket.rs applications"
homepage = "https://github.com/lawliet89/rocket_cors" homepage = "https://github.com/lawliet89/rocket_cors"
repository = "https://github.com/lawliet89/rocket_cors" repository = "https://github.com/lawliet89/rocket_cors"
documentation = "https://docs.rs/rocket_cors/" documentation = "https://lawliet89.github.io/rocket_cors/"
keywords = ["rocket", "cors"] keywords = ["rocket", "cors"]
categories = ["web-programming"] categories = ["web-programming"]

View File

@ -29,7 +29,7 @@ might work, but it's not guaranteed.
Add the following to Cargo.toml: Add the following to Cargo.toml:
```toml ```toml
rocket_cors = "0.1.0" rocket_cors = "0.1.1"
``` ```
To use the latest `master` branch, for example: To use the latest `master` branch, for example:

View File

@ -27,7 +27,7 @@
//! Add the following to Cargo.toml: //! Add the following to Cargo.toml:
//! //!
//! ```toml //! ```toml
//! rocket_cors = "0.1.0" //! rocket_cors = "0.1.1"
//! ``` //! ```
//! //!
//! To use the latest `master` branch, for example: //! To use the latest `master` branch, for example: