diff --git a/Cargo.lock b/Cargo.lock index 0895b12..c6a0068 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -832,7 +832,7 @@ dependencies = [ "image", "lazy_static", "log", - "lru", + "lru 0.18.0", "notify-rust", "once_cell", "parking_lot", @@ -2197,6 +2197,11 @@ name = "hashbrown" version = "0.17.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] [[package]] name = "hashlink" @@ -2933,6 +2938,15 @@ dependencies = [ "hashbrown 0.16.1", ] +[[package]] +name = "lru" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9" +dependencies = [ + "hashbrown 0.17.0", +] + [[package]] name = "mac-notification-sys" version = "0.6.12" @@ -4269,7 +4283,7 @@ dependencies = [ "indoc", "itertools 0.14.0", "kasuari", - "lru", + "lru 0.16.4", "strum", "thiserror 2.0.18", "unicode-segmentation", diff --git a/Cargo.toml b/Cargo.toml index 412c664..b454a7b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ notify-rust = "4.10" regex = "1.10" bytes = "1" bitflags = "2" -lru = "0.16" +lru = "0.18" webrtc = "0.17" flate2 = "1.0" parking_lot = "0.12"