From a050b6f2a6b825bf0824339266ab9545340420d4 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sun, 26 Aug 2018 21:08:29 -0700 Subject: [PATCH] Release v0.7.23 --- README.md | 2 +- phf/Cargo.toml | 6 +++--- phf_builder/Cargo.toml | 6 +++--- phf_codegen/Cargo.toml | 8 ++++---- phf_generator/Cargo.toml | 6 +++--- phf_macros/Cargo.toml | 10 +++++----- phf_shared/Cargo.toml | 4 ++-- 7 files changed, 21 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index af003fcb..dbbf1e17 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/phf/Cargo.toml b/phf/Cargo.toml index 70446f7a..55597ff3 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf" authors = ["Steven Fackler "] -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" @@ -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" } diff --git a/phf_builder/Cargo.toml b/phf_builder/Cargo.toml index 490184a8..f6f7ea93 100644 --- a/phf_builder/Cargo.toml +++ b/phf_builder/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_builder" -version = "0.7.22" +version = "0.7.23" authors = ["Steven Fackler "] 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" } diff --git a/phf_codegen/Cargo.toml b/phf_codegen/Cargo.toml index 44c56e6a..52ddb0e6 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.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" } diff --git a/phf_generator/Cargo.toml b/phf_generator/Cargo.toml index 99b1c7b4..b3025f40 100644 --- a/phf_generator/Cargo.toml +++ b/phf_generator/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "phf_generator" authors = ["Steven Fackler "] -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" } diff --git a/phf_macros/Cargo.toml b/phf_macros/Cargo.toml index 0bc15c5c..6c09a9b2 100644 --- a/phf_macros/Cargo.toml +++ b/phf_macros/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_macros" authors = ["Steven Fackler "] -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" @@ -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" } diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index 5ef2dbdc..98f960e1 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -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"