diff --git a/Cargo.lock b/Cargo.lock index 0f364dfe..46dc6c06 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -989,11 +989,11 @@ dependencies = [ [[package]] name = "phf" -version = "0.13.1" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +checksum = "010378780309880b08997fae13be7834dba947d36393bd372f2b1556deb2a2f6" dependencies = [ - "phf_shared", + "phf_shared 0.14.0", "serde", ] @@ -1004,7 +1004,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.13.1", ] [[package]] @@ -1014,7 +1014,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" dependencies = [ "fastrand", - "phf_shared", + "phf_shared 0.13.1", ] [[package]] @@ -1026,6 +1026,15 @@ dependencies = [ "siphasher", ] +[[package]] +name = "phf_shared" +version = "0.14.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6fd9027e2d9319be6349febd1db4e8d02aa544921200c9b777720ac34a3aa89" +dependencies = [ + "siphasher", +] + [[package]] name = "portable-atomic" version = "1.13.1" diff --git a/Cargo.toml b/Cargo.toml index a35f33c5..9c580bd7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,7 +63,7 @@ linux-raw-sys = { version = "0.12.0", features = ["ioctl"] } md-5 = "0.11.0" nix = { version = "0.31", default-features = false } parse_datetime = "0.11.0" -phf = "0.13.0" +phf = "0.14.0" phf_codegen = "0.13.0" rand = { version = "0.10.0" } rangemap = "1.5.1"