diff --git a/Cargo.lock b/Cargo.lock index cfa7ce5..d56235d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,27 +301,27 @@ 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_codegen" -version = "0.11.3" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1" dependencies = [ "phf_generator", - "phf_shared", + "phf_shared 0.13.1", ] [[package]] name = "phf_generator" -version = "0.11.2" +version = "0.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" dependencies = [ - "phf_shared", - "rand", + "fastrand", + "phf_shared 0.13.1", ] [[package]] @@ -333,6 +333,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 = "ppv-lite86" version = "0.2.17" diff --git a/Cargo.toml b/Cargo.toml index 5af82c8..6b9b5df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ regex = "1.10.4" sysinfo = "0.33.0" libc = "0.2.154" phf = "0.11.2" -phf_codegen = "0.11.2" +phf_codegen = "0.13.0" textwrap = { version = "0.16.1", features = ["terminal_size"] } xattr = "1.3.1" tempfile = "3.9.0"