diff --git a/Cargo.lock b/Cargo.lock index ac23636..b48a4b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -121,7 +121,7 @@ dependencies = [ "humantime", "lazy_static", "miette", - "phf 0.11.3", + "phf 0.13.1", "pulldown-cmark", "pulldown-cmark-ast", "serde", @@ -1652,6 +1652,17 @@ dependencies = [ "phf_shared 0.11.3", ] +[[package]] +name = "phf" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf" +dependencies = [ + "phf_macros 0.13.1", + "phf_shared 0.13.1", + "serde", +] + [[package]] name = "phf_generator" version = "0.10.0" @@ -1672,6 +1683,16 @@ dependencies = [ "rand", ] +[[package]] +name = "phf_generator" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737" +dependencies = [ + "fastrand", + "phf_shared 0.13.1", +] + [[package]] name = "phf_macros" version = "0.10.0" @@ -1699,6 +1720,19 @@ dependencies = [ "syn 2.0.106", ] +[[package]] +name = "phf_macros" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef" +dependencies = [ + "phf_generator 0.13.1", + "phf_shared 0.13.1", + "proc-macro2", + "quote", + "syn 2.0.106", +] + [[package]] name = "phf_shared" version = "0.10.0" @@ -1717,6 +1751,15 @@ dependencies = [ "siphasher 1.0.1", ] +[[package]] +name = "phf_shared" +version = "0.13.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266" +dependencies = [ + "siphasher 1.0.1", +] + [[package]] name = "pico-args" version = "0.5.0" diff --git a/Cargo.toml b/Cargo.toml index 789790a..f82151e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ dev = [] # Make it so we don't have recompile when the template.typ is changed comemo = "0.4.0" lazy_static = "1.5.0" miette = { version = "7.6.0", features = ["fancy"] } -phf = { version = "0.11.3", features = ["macros"] } +phf = { version = "0.13.1", features = ["macros"] } # using 0.11.0 for `pulldown-cmark-ast` pulldown-cmark = "0.11.3" pulldown-cmark-ast = "0.1.0"