From 9fb8cd2e50cfd36a3e370dd00e978a3b6feb3440 Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 20 Jun 2025 17:07:57 +0200 Subject: [PATCH] Bump phf & phf_codegen from 0.11.2 to 0.12.1 --- Cargo.lock | 19 ++++++++++--------- Cargo.toml | 4 ++-- 2 files changed, 12 insertions(+), 11 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e35797048..031c9e329 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1810,18 +1810,19 @@ dependencies = [ [[package]] name = "phf" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" dependencies = [ "phf_shared", + "serde", ] [[package]] name = "phf_codegen" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +checksum = "efbdcb6f01d193b17f0b9c3360fa7e0e620991b193ff08702f78b3ce365d7e61" dependencies = [ "phf_generator", "phf_shared", @@ -1829,19 +1830,19 @@ dependencies = [ [[package]] name = "phf_generator" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b" dependencies = [ + "fastrand", "phf_shared", - "rand 0.8.5", ] [[package]] name = "phf_shared" -version = "0.11.3" +version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" dependencies = [ "siphasher", ] diff --git a/Cargo.toml b/Cargo.toml index cf14bd58c..e77a8c7a1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -336,8 +336,8 @@ num-traits = "0.2.19" number_prefix = "0.4" onig = { version = "~6.5.1", default-features = false } parse_datetime = "0.9.0" -phf = "0.11.2" -phf_codegen = "0.11.2" +phf = "0.12.1" +phf_codegen = "0.12.1" platform-info = "2.0.3" rand = { version = "0.9.0", features = ["small_rng"] } rand_core = "0.9.0"