diff --git a/Cargo.lock b/Cargo.lock index 987f238f5..a05476f97 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1095,7 +1095,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "08570dddcc35bf42d1e7d239ec3f6bcedd9e8468701d299f3e0aea0722bca1b9" dependencies = [ "ahash", - "quick_cache", + "quick_cache 0.6.24", "slab", "tokio", ] @@ -1641,7 +1641,7 @@ dependencies = [ "new_mime_guess", "password-auth", "pin-project-lite", - "quick_cache", + "quick_cache 0.7.0", "send_wrapper", "shiba", "smallvec", @@ -3479,6 +3479,18 @@ dependencies = [ "parking_lot", ] +[[package]] +name = "quick_cache" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "403c1a912fec895cafb223201e368234842acb9220aaf08ab042ae89ba5f135c" +dependencies = [ + "equivalent", + "foldhash", + "hashbrown 0.17.1", + "parking_lot", +] + [[package]] name = "quinn" version = "0.11.11" diff --git a/ferron-modules-builtin/Cargo.toml b/ferron-modules-builtin/Cargo.toml index a6a3cf8c5..d93fd604c 100644 --- a/ferron-modules-builtin/Cargo.toml +++ b/ferron-modules-builtin/Cargo.toml @@ -65,7 +65,7 @@ flate2 = { version = "1.1.9", optional = true, default-features = false, feature # Caching hashlink = "0.12.0" -quick_cache = { version = "0.6.18", optional = true } +quick_cache = { version = "0.7.0", optional = true } # Rate limitation tokenbucket = { version = "0.1.6", optional = true }