diff --git a/README.md b/README.md index fa5e63ba..fcbe1b34 100644 --- a/README.md +++ b/README.md @@ -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.6/phf) +[Documentation](https://sfackler.github.io/rust-phf/doc/v0.7.7/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). diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 19812a0e..ddde1d13 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.7.6" +version = "0.7.7" 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.6/phf" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.7/phf" [lib] name = "phf" @@ -16,4 +16,4 @@ test = false core = ["phf_shared/core"] [dependencies] -phf_shared = { version = "=0.7.6", path = "../phf_shared" } +phf_shared = { version = "=0.7.7", path = "../phf_shared" } diff --git a/phf/src/lib.rs b/phf/src/lib.rs index e03f92ac..6571e63e 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -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.6")] +#![doc(html_root_url="https://sfackler.github.io/rust-phf/doc/v0.7.7")] #![warn(missing_docs)] #![cfg_attr(feature = "core", feature(no_std, core_slice_ext))] #![cfg_attr(feature = "core", no_std)] diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index d3dbe5bd..619b7b4b 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,16 +1,16 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.7.6" +version = "0.7.7" 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.6/phf_codegen" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.7/phf_codegen" [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.6" +version = "=0.7.7" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.6" +version = "=0.7.7" diff --git a/phf_codegen/src/lib.rs b/phf_codegen/src/lib.rs index 9532d279..bcce7f85 100644 --- a/phf_codegen/src/lib.rs +++ b/phf_codegen/src/lib.rs @@ -78,7 +78,7 @@ //! builder.entry("world", "2"); //! // ... //! ``` -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.6")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.7")] extern crate phf_shared; extern crate phf_generator; diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 68a9a6e3..1edc1c46 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,15 +1,15 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.7.6" +version = "0.7.7" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.6/phf_generator" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.7/phf_generator" [dependencies] rand = "0.3" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.6" +version = "=0.7.7" diff --git a/phf_generator/src/lib.rs b/phf_generator/src/lib.rs index d8bb1a89..d267fe19 100644 --- a/phf_generator/src/lib.rs +++ b/phf_generator/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.6")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.7")] extern crate phf_shared; extern crate rand; diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index c7846c0d..3a4e04a2 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.7.6" +version = "0.7.7" 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.6/phf_macros" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.7/phf_macros" [lib] name = "phf_macros" @@ -18,11 +18,11 @@ stats = ["time"] [dependencies.phf_generator] path = "../phf_generator" -version = "=0.7.6" +version = "=0.7.7" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.7.6" +version = "=0.7.7" [dependencies.time] version = "0.1" @@ -30,4 +30,4 @@ optional = true [dev-dependencies.phf] path = "../phf" -version = "=0.7.6" +version = "=0.7.7" diff --git a/phf_macros/src/lib.rs b/phf_macros/src/lib.rs index e9b40fbd..5dffc9ae 100644 --- a/phf_macros/src/lib.rs +++ b/phf_macros/src/lib.rs @@ -30,7 +30,7 @@ //! } //! # fn main() {} //! ``` -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.6")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.7")] #![feature(plugin_registrar, quote, rustc_private)] extern crate syntax; diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index c6e2bff0..46c25967 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.7.6" +version = "0.7.7" 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.6/phf_shared" +documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.7/phf_shared" [lib] name = "phf_shared" diff --git a/phf_shared/src/lib.rs b/phf_shared/src/lib.rs index d755e07e..e7d465ac 100644 --- a/phf_shared/src/lib.rs +++ b/phf_shared/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.6")] +#![doc(html_root_url="http://sfackler.github.io/rust-phf/doc/v0.7.7")] #![cfg_attr(feature = "core", feature(no_std, core_slice_ext, core_str_ext))] #![cfg_attr(feature = "core", no_std)] #[cfg(not(feature = "core"))]