From 260c71bd08d92f3c6d918b9d8a55a10b591f4128 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:12:57 +0000 Subject: [PATCH] Bump phf_codegen from 0.13.1 to 0.14.0 Bumps [phf_codegen](https://github.com/rust-phf/rust-phf) from 0.13.1 to 0.14.0. - [Release notes](https://github.com/rust-phf/rust-phf/releases) - [Changelog](https://github.com/rust-phf/rust-phf/blob/main/RELEASE_PROCESS.md) - [Commits](https://github.com/rust-phf/rust-phf/compare/v0.13.1...v0.14.0) --- updated-dependencies: - dependency-name: phf_codegen dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++-------- Cargo.toml | 2 +- 2 files changed, 18 insertions(+), 9 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8d1b107d..e65f6c1e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3698,28 +3698,28 @@ version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" dependencies = [ - "phf_shared", + "phf_shared 0.13.1", "serde", ] [[package]] name = "phf_codegen" -version = "0.13.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1" +checksum = "41b585a510fb76fdebead6897982ef2a03a21d8e6cbcca904999742a4afc6ffe" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.14.0", ] [[package]] name = "phf_generator" -version = "0.13.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +checksum = "aeb62e0959d5a1bebc965f4d15d9e2b7cea002b6b0f5ba8cde6cc26738467100" dependencies = [ "fastrand", - "phf_shared", + "phf_shared 0.14.0", ] [[package]] @@ -3731,6 +3731,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89" +dependencies = [ + "siphasher", +] + [[package]] name = "pico-args" version = "0.5.0" @@ -5004,7 +5013,7 @@ dependencies = [ "pcap", "phf", "phf_codegen", - "phf_shared", + "phf_shared 0.13.1", "picon", "plotters", "plotters-iced2", diff --git a/Cargo.toml b/Cargo.toml index 5e615e7c..e670aaca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -79,7 +79,7 @@ serial_test = { version = "3.5.0", default-features = false } #─────────────────────────────────────────────────────────────────────────────────────────────────────────────────────── [build-dependencies] -phf_codegen = "0.13.1" +phf_codegen = "0.14.0" phf_shared = "0.13.1" rustrict = { version = "0.7.38", default-features = false, features = ["censor"] }