From 2c9fe2d04098a7a99bc6b7eaabac625f99db149e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Jun 2025 08:13:10 +0000 Subject: [PATCH] Update phf_codegen requirement from 0.11 to 0.12 Updates the requirements on [phf_codegen](https://github.com/rust-phf/rust-phf) to permit the latest version. - [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/phf_codegen-v0.11.1...v0.12.1) --- updated-dependencies: - dependency-name: phf_codegen dependency-version: 0.12.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- web_atoms/Cargo.toml | 2 +- web_atoms/build.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/web_atoms/Cargo.toml b/web_atoms/Cargo.toml index 88402e84..73d2dbd3 100644 --- a/web_atoms/Cargo.toml +++ b/web_atoms/Cargo.toml @@ -20,4 +20,4 @@ phf = "0.11" [build-dependencies] string_cache_codegen = "0.5.4" -phf_codegen = "0.11" +phf_codegen = "0.12" diff --git a/web_atoms/build.rs b/web_atoms/build.rs index 73cad2f3..52813530 100644 --- a/web_atoms/build.rs +++ b/web_atoms/build.rs @@ -101,7 +101,7 @@ fn named_entities_to_phf(to: &Path) { let mut phf_map = phf_codegen::Map::new(); for (key, value) in entities { - phf_map.entry(key, &format!("{value:?}")); + phf_map.entry(key, format!("{value:?}")); } let mut file = File::create(to).unwrap();