diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 7ed38a56..b57ea71b 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.6.1" +version = "0.6.2" 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.1" +version = "=0.6.2" [dev_dependencies.phf_macros] path = "../phf_macros" -version = "=0.6.1" +version = "=0.6.2" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 86960aef..7105ec3b 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.1" +version = "0.6.2" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -17,7 +17,7 @@ stats = ["time"] [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.1" +version = "=0.6.2" [dependencies.time] version = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 1a2d8f7f..ed0f255b 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.1" +version = "0.6.2" license = "MIT" description = "Support code shared by phf and phf_mac" repository = "https://github.com/sfackler/rust-phf"