Skip to content

Commit

Permalink
Release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
abonander committed Oct 15, 2019
1 parent 7dbdcbf commit 4060288
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions phf/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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"
Expand All @@ -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", ]
Expand Down
6 changes: 3 additions & 3 deletions phf_codegen/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
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" }
4 changes: 2 additions & 2 deletions phf_generator/Cargo.toml
@@ -1,15 +1,15 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.24"
version = "0.8.0"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
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 }

Expand Down
8 changes: 4 additions & 4 deletions phf_macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "phf_macros"
version = "0.7.24"
version = "0.8.0"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2018"
license = "MIT"
Expand All @@ -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"
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
@@ -1,7 +1,7 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.24"
version = "0.8.0"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
Expand Down

0 comments on commit 4060288

Please sign in to comment.