diff --git a/Cargo.lock b/Cargo.lock index aedfdb4..70bd038 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -724,11 +724,11 @@ dependencies = [ [[package]] name = "phf" -version = "0.12.1" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "913273894cec178f401a31ec4b656318d95473527be05c0752cc41cdc32be8b7" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" dependencies = [ - "phf_shared", + "phf_shared 0.13.1", "serde", ] @@ -739,7 +739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "efbdcb6f01d193b17f0b9c3360fa7e0e620991b193ff08702f78b3ce365d7e61" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.12.1", ] [[package]] @@ -749,7 +749,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2cbb1126afed61dd6368748dae63b1ee7dc480191c6262a3b4ff1e29d86a6c5b" dependencies = [ "fastrand", - "phf_shared", + "phf_shared 0.12.1", ] [[package]] @@ -761,6 +761,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher", +] + [[package]] name = "powerfmt" version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 40bba8a..0d7dee1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -57,7 +57,7 @@ linux-raw-sys = { version = "0.10.0", features = ["ioctl"] } md-5 = "0.10.6" nix = { version = "0.30", default-features = false } parse_datetime = "0.11.0" -phf = "0.12.0" +phf = "0.13.0" phf_codegen = "0.12.1" rand = { version = "0.9.0", features = ["small_rng"] } rangemap = "1.5.1"