diff --git a/Cargo.lock b/Cargo.lock index 3ee36c9e..f72d7a42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3013,10 +3013,19 @@ name = "hashbrown" version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ "allocator-api2", "equivalent", - "foldhash 0.1.5", + "foldhash 0.2.0", ] [[package]] @@ -3977,11 +3986,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.12.5" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.16.1", ] [[package]] diff --git a/crates/charm-web-server/Cargo.toml b/crates/charm-web-server/Cargo.toml index 04ea2e30..a2fb5fcf 100644 --- a/crates/charm-web-server/Cargo.toml +++ b/crates/charm-web-server/Cargo.toml @@ -31,7 +31,7 @@ serde_json = "1" tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["env-filter"] } rand = "0.10.2" -lru = "0.12" +lru = "0.18" futures-util = "0.3.32" mime = "0.3" mime_guess = "2" diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 05870866..850c5a01 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2754,10 +2754,19 @@ name = "hashbrown" version = "0.15.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ "allocator-api2", "equivalent", - "foldhash 0.1.5", + "foldhash 0.2.0", ] [[package]] @@ -3670,11 +3679,11 @@ dependencies = [ [[package]] name = "lru" -version = "0.12.5" +version = "0.16.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.16.1", ] [[package]] diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index be6a5be8..2233f982 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -44,7 +44,7 @@ eyeball = "0.8.8" tauri-plugin-dialog = "2.7.1" tauri-plugin-store = "2" matrix-sdk-ui = "0.18.0" -lru = "0.12" +lru = "0.16" imbl = "6.1.0" regex = "1" async-trait = "0.1"