From 73dd27b12a773acf4d12bf294d7136074cc2b228 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 22:54:15 +0000 Subject: [PATCH] Update phf requirement from 0.13 to 0.14 Updates the requirements on [phf](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 dependency-version: 0.14.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- core/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Cargo.toml b/core/Cargo.toml index ef49c86..371a221 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -16,7 +16,7 @@ features = ["full-async", "doc-cfg"] [dependencies] rquickjs-sys = { workspace = true } hashbrown = { version = "0.17" } -phf = { version = "0.13", optional = true } +phf = { version = "0.14", optional = true } indexmap = { version = "2", optional = true } either = { version = "1", optional = true } async-lock = { version = "3", optional = true, default-features = false }