From 5cb3a89f64a807ab216e1e903c9c08f66abc620d Mon Sep 17 00:00:00 2001 From: Daniel Hofstetter Date: Fri, 20 Jun 2025 09:29:12 +0200 Subject: [PATCH] Bump phf & phf_codegen from 0.11.2 to 0.12.1 --- Cargo.lock | 55 ++++++++++++++++++++++++++++++++++++++++++++++-------- Cargo.toml | 4 ++-- 2 files changed, 49 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 36e30a4..aab7eb8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -168,7 +168,7 @@ checksum = "efdce149c370f133a071ca8ef6ea340b7b88748ab0810097a9e2976eaa34b4f3" dependencies = [ "chrono", "chrono-tz-build", - "phf", + "phf 0.11.3", ] [[package]] @@ -178,7 +178,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8f10f8c9340e31fc120ff885fcdb54a0b48e474bbd77cab557f0c30a3e569402" dependencies = [ "parse-zoneinfo", - "phf_codegen", + "phf_codegen 0.11.3", ] [[package]] @@ -947,7 +947,17 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" dependencies = [ - "phf_shared", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" +dependencies = [ + "phf_shared 0.12.1", + "serde", ] [[package]] @@ -956,8 +966,18 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" dependencies = [ - "phf_generator", - "phf_shared", + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "efbdcb6f01d193b17f0b9c3360fa7e0e620991b193ff08702f78b3ce365d7e61" +dependencies = [ + "phf_generator 0.12.1", + "phf_shared 0.12.1", ] [[package]] @@ -966,10 +986,20 @@ version = "0.11.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" dependencies = [ - "phf_shared", + "phf_shared 0.11.3", "rand 0.8.5", ] +[[package]] +name = "phf_generator" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b" +dependencies = [ + "fastrand", + "phf_shared 0.12.1", +] + [[package]] name = "phf_shared" version = "0.11.3" @@ -979,6 +1009,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.12.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06005508882fb681fd97892ecff4b7fd0fee13ef1aa569f8695dae7ab9099981" +dependencies = [ + "siphasher", +] + [[package]] name = "pkg-config" version = "0.3.32" @@ -1043,8 +1082,8 @@ dependencies = [ "clap_mangen", "ctor", "libc", - "phf", - "phf_codegen", + "phf 0.12.1", + "phf_codegen 0.12.1", "pretty_assertions", "rand 0.9.1", "regex", diff --git a/Cargo.toml b/Cargo.toml index bba6e5f..293b924 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -60,8 +60,8 @@ crossterm = "0.29.0" ctor = "0.4.1" libc = "0.2.154" nix = { version = "0.30", default-features = false, features = ["process"] } -phf = "0.11.2" -phf_codegen = "0.11.2" +phf = "0.12.1" +phf_codegen = "0.12.1" prettytable-rs = "0.10.0" rand = { version = "0.9.0", features = ["small_rng"] } ratatui = "0.29.0"