diff --git a/phf/Cargo.toml b/phf/Cargo.toml index cde3e976..a1b8937a 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.6.12" +version = "0.6.13" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -14,4 +14,4 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.12" +version = "=0.6.13" diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index 5ca33f5c..dbc8e27b 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.6.12" +version = "0.6.13" license = "MIT" description = "Codegen library for PHF types" repository = "https://github.com/sfackler/rust-phf" @@ -9,12 +9,12 @@ documentation = "https://sfackler.github.io/rust-phf/doc/phf_codegen" [dependencies.phf_generator] path = "../phf_generator" -version = "=0.6.12" +version = "=0.6.13" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.12" +version = "=0.6.13" [dev-dependencies.phf] path = "../phf" -version = "=0.6.12" +version = "=0.6.13" diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index b4f169bb..a8da922d 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.6.12" +version = "0.6.13" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" @@ -12,4 +12,4 @@ rand = "0.1" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.12" +version = "=0.6.13" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index ba7e8c28..5d8fdcc1 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.12" +version = "0.6.13" license = "MIT" description = "Compiler plugin for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -18,11 +18,11 @@ stats = ["time"] [dependencies.phf_generator] path = "../phf_generator" -version = "=0.6.12" +version = "=0.6.13" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.12" +version = "=0.6.13" [dependencies.time] version = "0.1" @@ -30,4 +30,4 @@ optional = true [dev-dependencies.phf] path = "../phf" -version = "=0.6.12" +version = "=0.6.13" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 1f1457d0..2f42407b 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.12" +version = "0.6.13" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf"