diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 84ce9b3f..d7cb6f86 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.7.24" +version = "0.8.0" license = "MIT" description = "Runtime support for perfect hash function data structures" repository = "https://github.com/sfackler/rust-phf" @@ -22,10 +22,10 @@ macros = [ ] [dependencies] -phf_shared = { version = "0.7.24", path = "../phf_shared" } +phf_shared = { version = "0.8.0", path = "../phf_shared" } proc-macro-hack = { version = "0.5.4", optional = true } -phf_macros = { version = "0.7.24", optional = true, path = "../phf_macros" } +phf_macros = { version = "0.8.0", optional = true, path = "../phf_macros" } [package.metadata.docs.rs] features = ["macros", ] diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index d4c70d61..b5438c5d 100644 --- a/phf_codegen/Cargo.toml +++ b/phf_codegen/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "phf_codegen" authors = ["Steven Fackler "] -version = "0.7.24" +version = "0.8.0" license = "MIT" description = "Codegen library for PHF types" repository = "https://github.com/sfackler/rust-phf" edition = "2018" [dependencies] -phf_generator = { version = "0.7.24", path = "../phf_generator" } -phf_shared = { version = "0.7.24", path = "../phf_shared" } +phf_generator = { version = "0.8.0", path = "../phf_generator" } +phf_shared = { version = "0.8.0", path = "../phf_shared" } diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index b75210df..e1a58b21 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -version = "0.7.24" +version = "0.8.0" license = "MIT" description = "PHF generation logic" repository = "https://github.com/sfackler/rust-phf" @@ -9,7 +9,7 @@ edition = "2018" [dependencies] rand = { version = "0.7", features = ["small_rng"] } -phf_shared = { version = "0.7.24", path = "../phf_shared" } +phf_shared = { version = "0.8.0", path = "../phf_shared" } # for stable black_box() criterion = { version = "0.3", optional = true } diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index e29e292f..25297458 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "phf_macros" -version = "0.7.24" +version = "0.8.0" authors = ["Steven Fackler "] edition = "2018" license = "MIT" @@ -16,10 +16,10 @@ quote = "1" proc-macro2 = "1" proc-macro-hack = "0.5.4" -phf_generator = { version = "0.7.24", path = "../phf_generator" } -phf_shared = { version = "0.7.24", path = "../phf_shared" } +phf_generator = { version = "0.8.0", path = "../phf_generator" } +phf_shared = { version = "0.8.0", path = "../phf_shared" } [dev-dependencies] trybuild = "1.0" -phf = { version = "0.7", path = "../phf", features = ["macros", "unicase"] } +phf = { version = "0.8", path = "../phf", features = ["macros", "unicase"] } unicase = "2.4.0" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 05344ebc..bed2195d 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.7.24" +version = "0.8.0" license = "MIT" description = "Support code shared by PHF libraries" repository = "https://github.com/sfackler/rust-phf"