From d0ab008f0208c42b9b636b68aa39453d3d824485 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 22:54:04 +0000 Subject: [PATCH] Update phf_generator requirement from 0.13 to 0.14 Updates the requirements on [phf_generator](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/v0.13.0...v0.14.0) --- updated-dependencies: - dependency-name: phf_generator dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- macro/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ae7ecdc..5bd9b44 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -24,7 +24,7 @@ indexmap = "2" convert_case = "0.11" syn = { version = "2", features = ["full", "fold", "extra-traits", "visit"] } phf_shared = { version = "0.13", optional = true } -phf_generator = { version = "0.13", optional = true } +phf_generator = { version = "0.14", optional = true } [dev-dependencies] rquickjs = { path = "../", features = ["macro", "futures", "phf"] }