Skip to content

Commit

Permalink
Link to docs.rs
Browse files Browse the repository at this point in the history
Closes #98
  • Loading branch information
sfackler committed Dec 6, 2016
1 parent 4786654 commit 61142c5
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ Rust-PHF

[![Build Status](https://travis-ci.org/sfackler/rust-phf.png?branch=master)](https://travis-ci.org/sfackler/rust-phf) [![Latest Version](https://img.shields.io/crates/v/phf.svg)](https://crates.io/crates/phf)

[Documentation](https://sfackler.github.io/rust-phf/doc/v0.7.20/phf)
[Documentation](https://docs.rs/phf/0.7.20/phf)

Rust-PHF is a library to generate efficient lookup tables at compile time using
[perfect hash functions](http://en.wikipedia.org/wiki/Perfect_hash_function).
Expand Down
2 changes: 1 addition & 1 deletion phf/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.7.20"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf"
documentation = "https://docs.rs/phf/0.7.20/phf"

[lib]
name = "phf"
Expand Down
2 changes: 1 addition & 1 deletion phf/src/lib.rs
Expand Up @@ -3,7 +3,7 @@
//! PHF data structures can be generated via the syntax extensions in the
//! `phf_macros` crate or via code generation in the `phf_codegen` crate. See
//! the documentation of those crates for more details.
#![doc(html_root_url="https://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf/0.7.20")]
#![warn(missing_docs)]
#![cfg_attr(feature = "core", no_std)]

Expand Down
2 changes: 1 addition & 1 deletion phf_builder/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "Runtime creation of perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_builder"
documentation = "https://docs.rs/phf_builder/0.7.20/phf_builder"

[dependencies]
phf = { version = "=0.7.20", path = "../phf" }
Expand Down
2 changes: 1 addition & 1 deletion phf_builder/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_builder/0.7.20")]
extern crate phf;
extern crate phf_generator;

Expand Down
2 changes: 1 addition & 1 deletion phf_codegen/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.7.20"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_codegen"
documentation = "https://docs.rs/phf_codegen/0.7.20/phf_codegen"

[dependencies]
phf_generator = { version = "=0.7.20", path = "../phf_generator" }
Expand Down
2 changes: 1 addition & 1 deletion phf_codegen/src/lib.rs
Expand Up @@ -78,7 +78,7 @@
//! builder.entry("world", "2");
//! // ...
//! ```
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_codegen/0.7.20")]
extern crate phf_shared;
extern crate phf_generator;

Expand Down
2 changes: 1 addition & 1 deletion phf_generator/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.7.20"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_generator"
documentation = "https://docs.rs/phf_generator/0.7.20/phf_generator"

[dependencies]
rand = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion phf_generator/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_generator/0.7.20")]
extern crate phf_shared;
extern crate rand;

Expand Down
2 changes: 1 addition & 1 deletion phf_macros/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.7.20"
license = "MIT"
description = "Compiler plugin for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_macros"
documentation = "https://docs.rs/phf_macros/0.7.20/phf_macros"

[lib]
name = "phf_macros"
Expand Down
2 changes: 1 addition & 1 deletion phf_macros/src/lib.rs
Expand Up @@ -30,7 +30,7 @@
//! }
//! # fn main() {}
//! ```
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_macros/0.7.20")]
#![feature(plugin_registrar, quote, rustc_private)]

extern crate syntax;
Expand Down
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
Expand Up @@ -5,7 +5,7 @@ version = "0.7.20"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_shared"
documentation = "https://docs.rs/phf_shared/0.7.20/phf_shared"

[lib]
name = "phf_shared"
Expand Down
2 changes: 1 addition & 1 deletion phf_shared/src/lib.rs
@@ -1,4 +1,4 @@
#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.20")]
#![doc(html_root_url="https://docs.rs/phf_shared/0.7.20")]
#![cfg_attr(feature = "core", no_std)]

#[cfg(not(feature = "core"))]
Expand Down

0 comments on commit 61142c5

Please sign in to comment.