diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 724e4c51..f45d14ac 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.6.6" +version = "0.6.7" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -17,8 +17,8 @@ core = ["phf_shared/core"] [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.6" +version = "=0.6.7" [dev_dependencies.phf_macros] path = "../phf_macros" -version = "=0.6.6" +version = "=0.6.7" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 785185a9..8b6059d8 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -version = "0.6.6" +version = "0.6.7" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -20,7 +20,7 @@ rand = "0.1" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.6" +version = "=0.6.7" [dependencies.time] version = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 10771f55..ce09d029 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.6.6" +version = "0.6.7" license = "MIT" description = "Support code shared by phf and phf_mac" repository = "https://github.com/sfackler/rust-phf"