Skip to content

Commit

Permalink
Release v0.7.23
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Aug 27, 2018
1 parent 9098872 commit a050b6f
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -3,7 +3,7 @@ Rust-PHF

[![Build Status](https://travis-ci.org/sfackler/rust-phf.png?branch=master)](https://travis-ci.org/sfackler/rust-phf) [![Latest Version](https://img.shields.io/crates/v/phf.svg)](https://crates.io/crates/phf)

[Documentation](https://docs.rs/phf/0.7.22/phf)
[Documentation](https://docs.rs/phf/0.7.23/phf)

Rust-PHF is a library to generate efficient lookup tables at compile time using
[perfect hash functions](http://en.wikipedia.org/wiki/Perfect_hash_function).
Expand Down
6 changes: 3 additions & 3 deletions phf/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "phf"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.22"
version = "0.7.23"
license = "MIT"
description = "Runtime support for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf/0.7.22/phf"
documentation = "https://docs.rs/phf/0.7.23/phf"

[lib]
name = "phf"
Expand All @@ -17,4 +17,4 @@ core = ["phf_shared/core"]
unicase = ["phf_shared/unicase"]

[dependencies]
phf_shared = { version = "=0.7.22", path = "../phf_shared" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
6 changes: 3 additions & 3 deletions phf_builder/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "phf_builder"
version = "0.7.22"
version = "0.7.23"
authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "MIT"
description = "Runtime creation of perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"

[dependencies]
phf = { version = "=0.7.22", path = "../phf" }
phf_generator = { version = "=0.7.22", path = "../phf_generator" }
phf = { version = "=0.7.23", path = "../phf" }
phf_generator = { version = "=0.7.23", path = "../phf_generator" }
8 changes: 4 additions & 4 deletions phf_codegen/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "phf_codegen"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.22"
version = "0.7.23"
license = "MIT"
description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_codegen/0.7.22/phf_codegen"
documentation = "https://docs.rs/phf_codegen/0.7.23/phf_codegen"

[dependencies]
phf_generator = { version = "=0.7.22", path = "../phf_generator" }
phf_shared = { version = "=0.7.22", path = "../phf_shared" }
phf_generator = { version = "=0.7.23", path = "../phf_generator" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
6 changes: 3 additions & 3 deletions phf_generator/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "phf_generator"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.22"
version = "0.7.23"
license = "MIT"
description = "PHF generation logic"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_generator/0.7.22/phf_generator"
documentation = "https://docs.rs/phf_generator/0.7.23/phf_generator"

[dependencies]
rand = "0.5"
phf_shared = { version = "=0.7.22", path = "../phf_shared" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
10 changes: 5 additions & 5 deletions phf_macros/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "phf_macros"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.22"
version = "0.7.23"
license = "MIT"
description = "Compiler plugin for perfect hash function data structures"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_macros/0.7.22/phf_macros"
documentation = "https://docs.rs/phf_macros/0.7.23/phf_macros"

[lib]
name = "phf_macros"
Expand All @@ -20,11 +20,11 @@ unicase_support = ["unicase", "phf_shared/unicase"]
stats = []

[dependencies]
phf_generator = { version = "=0.7.22", path = "../phf_generator" }
phf_shared = { version = "=0.7.22", path = "../phf_shared" }
phf_generator = { version = "=0.7.23", path = "../phf_generator" }
phf_shared = { version = "=0.7.23", path = "../phf_shared" }
unicase = { version = "1.4", optional = true }

[dev-dependencies]
compiletest_rs = "0.3"
phf = { version = "0.7.22", path = "../phf" }
phf = { version = "0.7.23", path = "../phf" }

4 changes: 2 additions & 2 deletions phf_shared/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "phf_shared"
authors = ["Steven Fackler <sfackler@gmail.com>"]
version = "0.7.22"
version = "0.7.23"
license = "MIT"
description = "Support code shared by PHF libraries"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://docs.rs/phf_shared/0.7.22/phf_shared"
documentation = "https://docs.rs/phf_shared/0.7.23/phf_shared"

[lib]
name = "phf_shared"
Expand Down

0 comments on commit a050b6f

Please sign in to comment.