diff --git a/Cargo.lock b/Cargo.lock index ff816e01e..907d97c15 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -996,7 +996,7 @@ dependencies = [ "ignore", "image", "libc", - "lru", + "lru 0.18.0", "multimap", "objc2", "objc2-foundation", @@ -2253,6 +2253,17 @@ dependencies = [ "foldhash", ] +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash", +] + [[package]] name = "hashlink" version = "0.9.1" @@ -3034,6 +3045,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.1", +] + [[package]] name = "lsp-types" version = "0.94.1" @@ -4003,7 +4023,7 @@ dependencies = [ "indoc", "itertools 0.14.0", "kasuari", - "lru", + "lru 0.16.4", "strum", "thiserror 2.0.18", "unicode-segmentation", diff --git a/crates/tui/Cargo.toml b/crates/tui/Cargo.toml index d010123e6..4d6002477 100644 --- a/crates/tui/Cargo.toml +++ b/crates/tui/Cargo.toml @@ -67,7 +67,7 @@ shlex = "1.3.0" tiny_http = "0.12" ignore = "0.4" image = { version = "0.25", default-features = false, features = ["png"] } -lru = "0.16" +lru = "0.18" parking_lot = "0.12" pdf-extract = "0.10" tar = "0.4"