Skip to content

Commit

Permalink
Release phf_shared v0.11.2, phf_generator v0.11.2, phf_macros v0.11.2…
Browse files Browse the repository at this point in the history
…, phf v0.11.2, phf_codegen v0.11.2
  • Loading branch information
JohnTitor committed Jun 24, 2023
1 parent a1e5072 commit c9c35fd
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions phf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.11.1"
version = "0.11.2"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/rust-phf/rust-phf"
Expand All @@ -23,8 +23,8 @@ unicase = ["phf_macros?/unicase", "phf_shared/unicase"]
macros = ["phf_macros"]

[dependencies]
phf_macros = { version = "^0.11.1", optional = true, path = "../phf_macros" }
phf_shared = { version = "^0.11.1", default-features = false, path = "../phf_shared" }
phf_macros = { version = "^0.11.2", optional = true, path = "../phf_macros" }
phf_shared = { version = "^0.11.2", default-features = false, path = "../phf_shared" }
serde = { version = "1.0", optional = true }

[package.metadata.docs.rs]
Expand Down
2 changes: 1 addition & 1 deletion phf/examples/unicase-example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ rust-version = "1.60"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
phf = { version = "^0.11.1", features = ["macros", "unicase"] }
phf = { version = "^0.11.2", features = ["macros", "unicase"] }
unicase = "2"
2 changes: 1 addition & 1 deletion phf_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.11.1"
version = "0.11.2"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/rust-phf/rust-phf"
Expand Down
4 changes: 2 additions & 2 deletions phf_codegen/test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ build = "build.rs"
edition = "2021"

[dependencies]
phf = { version = "^0.11.1", features = ["uncased", "unicase"] }
phf = { version = "^0.11.2", features = ["uncased", "unicase"] }
uncased = { version = "0.9.6", default-features = false }
unicase = "2.4.0"

[build-dependencies]
phf_codegen = { version = "^0.11.1", path = ".." }
phf_codegen = { version = "^0.11.2", path = ".." }
unicase = "2.4.0"
uncased = { version = "0.9.6", default-features = false }
4 changes: 2 additions & 2 deletions phf_generator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.11.1"
version = "0.11.2"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/rust-phf/rust-phf"
Expand All @@ -12,7 +12,7 @@ readme = "README.md"

[dependencies]
rand = { version = "0.8", default-features = false, features = ["small_rng"] }
phf_shared = { version = "^0.11.1", default-features = false }
phf_shared = { version = "^0.11.2", default-features = false }
# for stable black_box()
criterion = { version = "0.3.6", optional = true }

Expand Down
4 changes: 2 additions & 2 deletions phf_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "phf_macros"
version = "0.11.1"
version = "0.11.2"
authors = ["Steven Fackler <sfackler@gmail.com>"]
edition = "2021"
license = "MIT"
Expand All @@ -24,4 +24,4 @@ proc-macro2 = "1"
unicase_ = { package = "unicase", version = "2.4.0", optional = true }

phf_generator = "0.11.1"
phf_shared = { version = "^0.11.1", default-features = false }
phf_shared = { version = "^0.11.2", default-features = false }
2 changes: 1 addition & 1 deletion phf_shared/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.11.1"
version = "0.11.2"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/rust-phf/rust-phf"
Expand Down

0 comments on commit c9c35fd

Please sign in to comment.