diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 3f0f6c5c..1071c63c 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,11 +1,10 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.7.23" +version = "0.7.24" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://docs.rs/phf/0.7.23/phf" [lib] name = "phf" @@ -18,6 +17,6 @@ unicase = ["phf_shared/unicase"] macros = ["phf_macros"] [dependencies] -phf_shared = { version = "=0.7.23", path = "../phf_shared" } +phf_shared = { version = "0.7.24", path = "../phf_shared" } -phf_macros = { version = "0.7.23", optional = true, path = "../phf_macros" } +phf_macros = { version = "0.7.24", optional = true, path = "../phf_macros" } diff --git a/phf/src/lib.rs b/phf/src/lib.rs index 8a8797e7..28e6b86b 100644 --- a/phf/src/lib.rs +++ b/phf/src/lib.rs @@ -37,7 +37,7 @@ //! //! Alternatively, you can use the phf_codegen crate to generate PHF datatypes //! in a build script. This method can be used with a stable compiler. -#![doc(html_root_url="https://docs.rs/phf/0.7.20")] +#![doc(html_root_url="https://docs.rs/phf/0.7")] #![warn(missing_docs)] #![cfg_attr(feature = "core", no_std)] diff --git a/phf_builder/Cargo.toml b/phf_builder/Cargo.toml index f6f7ea93..4685db9f 100644 --- a/phf_builder/Cargo.toml +++ b/phf_builder/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_builder" -version = "0.7.23" +version = "0.7.24" authors = ["Steven Fackler "] license = "MIT" description = "Runtime creation of perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" [dependencies] -phf = { version = "=0.7.23", path = "../phf" } -phf_generator = { version = "=0.7.23", path = "../phf_generator" } +phf = { version = "0.7.24", path = "../phf" } +phf_generator = { version = "0.7.24", path = "../phf_generator" } diff --git a/phf_builder/src/lib.rs b/phf_builder/src/lib.rs index bd7daa9f..e8624877 100644 --- a/phf_builder/src/lib.rs +++ b/phf_builder/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="https://docs.rs/phf_builder/0.7.20")] +#![doc(html_root_url="https://docs.rs/phf_builder/0.7")] extern crate phf; extern crate phf_generator; diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index 52ddb0e6..83906a50 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,12 +1,11 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.7.23" +version = "0.7.24" license = "MIT" description = "Codegen library for PHF types" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://docs.rs/phf_codegen/0.7.23/phf_codegen" [dependencies] -phf_generator = { version = "=0.7.23", path = "../phf_generator" } -phf_shared = { version = "=0.7.23", path = "../phf_shared" } +phf_generator = { version = "0.7.24", path = "../phf_generator" } +phf_shared = { version = "0.7.24", path = "../phf_shared" } diff --git a/phf_codegen/src/lib.rs b/phf_codegen/src/lib.rs index cdde54ce..00c04e3e 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="https://docs.rs/phf_codegen/0.7.20")] +#![doc(html_root_url="https://docs.rs/phf_codegen/0.7")] extern crate phf_shared; extern crate phf_generator; diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index b6e160ec..6c4451fe 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,12 +1,11 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.7.23" +version = "0.7.24" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://docs.rs/phf_generator/0.7.23/phf_generator" [dependencies] rand = "0.6" -phf_shared = { version = "=0.7.23", path = "../phf_shared" } +phf_shared = { version = "0.7.24", path = "../phf_shared" } diff --git a/phf_generator/src/lib.rs b/phf_generator/src/lib.rs index 4b7e210b..6a83340e 100644 --- a/phf_generator/src/lib.rs +++ b/phf_generator/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="https://docs.rs/phf_generator/0.7.20")] +#![doc(html_root_url="https://docs.rs/phf_generator/0.7")] extern crate phf_shared; extern crate rand; diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 98c28759..c0397496 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "phf_macros" -version = "0.7.23" +version = "0.7.24" authors = ["Steven Fackler "] edition = "2018" +license = "MIT" +description = "Macros to generate types in the phf crate" +repository = "https://github.com/sfackler/rust-phf" [lib] proc-macro = true @@ -12,9 +15,9 @@ syn = { version = "0.15", features = ["full"] } quote = "0.6" proc-macro2 = "0.4" -phf_generator = { version = "=0.7.23", path = "../phf_generator" } -phf_shared = { version = "=0.7.23", path = "../phf_shared" } +phf_generator = { version = "0.7.24", path = "../phf_generator" } +phf_shared = { version = "0.7.24", path = "../phf_shared" } [dev-dependencies] compiletest_rs = "0.3" -phf = { version = "0.7.23", path = "../phf", features = ["macros"] } +#phf = { version = "0.7", path = "../phf", features = ["macros"] } diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 98f960e1..bc19f0a3 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,11 +1,10 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.7.23" +version = "0.7.24" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf" -documentation = "https://docs.rs/phf_shared/0.7.23/phf_shared" [lib] name = "phf_shared" diff --git a/phf_shared/src/lib.rs b/phf_shared/src/lib.rs index fe636be9..e840e6e7 100644 --- a/phf_shared/src/lib.rs +++ b/phf_shared/src/lib.rs @@ -1,4 +1,4 @@ -#![doc(html_root_url="https://docs.rs/phf_shared/0.7.20")] +#![doc(html_root_url="https://docs.rs/phf_shared/0.7")] #![cfg_attr(feature = "core", no_std)] #[cfg(not(feature = "core"))]