From 3074fa39a80070b333a3f0d2404a6b0aec1c28af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Aug 2022 14:05:28 +0000 Subject: [PATCH] Bump phf from 0.7.24 to 0.10.1 Bumps [phf](https://github.com/sfackler/rust-phf) from 0.7.24 to 0.10.1. - [Release notes](https://github.com/sfackler/rust-phf/releases) - [Changelog](https://github.com/rust-phf/rust-phf/blob/master/CHANGELOG.md) - [Commits](https://github.com/sfackler/rust-phf/compare/v0.7.24...v0.10.1) --- updated-dependencies: - dependency-name: phf dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 30 +++--------------------------- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 28 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 44eb5d1..ea7179d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1438,15 +1438,6 @@ version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e" -[[package]] -name = "phf" -version = "0.7.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3da44b85f8e8dfaec21adae67f95d93244b2ecf6ad2a692320598dcc8e6dd18" -dependencies = [ - "phf_shared 0.7.24", -] - [[package]] name = "phf" version = "0.8.0" @@ -1521,22 +1512,13 @@ dependencies = [ "syn 1.0.60", ] -[[package]] -name = "phf_shared" -version = "0.7.24" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234f71a15de2288bcb7e3b6515828d22af7ec8598ee6d24c3b526fa0a80b67a0" -dependencies = [ - "siphasher 0.2.3", -] - [[package]] name = "phf_shared" version = "0.8.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" dependencies = [ - "siphasher 0.3.3", + "siphasher", ] [[package]] @@ -1545,7 +1527,7 @@ version = "0.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" dependencies = [ - "siphasher 0.3.3", + "siphasher", ] [[package]] @@ -2068,12 +2050,6 @@ version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2579985fda508104f7587689507983eadd6a6e84dd35d6d115361f530916fa0d" -[[package]] -name = "siphasher" -version = "0.2.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0b8de496cf83d4ed58b6be86c3a275b8602f6ffe98d3024a869e124147a9a3ac" - [[package]] name = "siphasher" version = "0.3.3" @@ -2817,7 +2793,7 @@ dependencies = [ "man", "mime", "openssl", - "phf 0.7.24", + "phf 0.10.1", "regex", "reqwest", "rusqlite", diff --git a/Cargo.toml b/Cargo.toml index 1f3648c..ad141d5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ log = "0.4.17" stderrlog = "0.5.3" atty = "0.2.14" scraper = { version = "0.13.0", default-features = false, features = [] } -phf = "0.7.24" +phf = "0.10.1" openssl = { version = "0.10.41", features = ["vendored"], optional = true } [dependencies.image]