From fc45373b34a461664f532c5108f3d2625172c128 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 22 Feb 2015 12:49:41 -0800 Subject: [PATCH] Release v0.6.10 --- phf/Cargo.toml | 8 ++------ phf_codegen/Cargo.toml | 8 ++++---- phf_generator/Cargo.toml | 4 ++-- phf_macros/Cargo.toml | 8 ++++---- phf_shared/Cargo.toml | 2 +- 5 files changed, 13 insertions(+), 17 deletions(-) diff --git a/phf/Cargo.toml b/phf/Cargo.toml index d7c7c3d8..3b0d96b5 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.6.9" +version = "0.6.10" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -14,8 +14,4 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.9" - -[dev_dependencies.phf_macros] -path = "../phf_macros" -version = "=0.6.9" +version = "=0.6.10" diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index 0467cdde..de803079 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.9" +version = "0.6.10" 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.9" +version = "=0.6.10" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.9" +version = "=0.6.10" [dev-dependencies.phf] path = "../phf" -version = "=0.6.9" +version = "=0.6.10" diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 726a0768..0abe22d8 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.9" +version = "0.6.10" 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.9" +version = "=0.6.10" diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 714276d5..195e2713 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.9" +version = "0.6.10" 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.9" +version = "=0.6.10" [dependencies.phf_shared] path = "../phf_shared" -version = "=0.6.9" +version = "=0.6.10" [dependencies.time] version = "0.1" @@ -30,4 +30,4 @@ optional = true [dev-dependencies.phf] path = "../phf" -version = "=0.6.9" +version = "=0.6.10" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index a1454b80..8efe4b55 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.9" +version = "0.6.10" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf"