diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 988877d2..2d651296 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.4.9" +version = "0.5.0" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -14,8 +14,8 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.4.9" +version = "=0.5.0" [dev_dependencies.phf_mac] path = "../phf_mac" -version = "=0.4.9" +version = "=0.5.0" diff --git a/phf_mac/Cargo.toml b/phf_mac/Cargo.toml index 86673279..8bb60ed2 100644 --- a/phf_mac/Cargo.toml +++ b/phf_mac/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_mac" authors = ["Steven Fackler "] -version = "0.4.9" +version = "0.5.0" 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.4.9" +version = "=0.5.0" [dependencies.time] version = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 06a7b9ee..8a55c313 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.4.9" +version = "0.5.0" license = "MIT" description = "Support code shared by phf and phf_mac" repository = "https://github.com/sfackler/rust-phf"