From 505683c2d61dd5ee4eccd6fb0fb2c6410c667032 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 21:14:54 +0000 Subject: [PATCH] chore(deps): bump lru from 0.16.4 to 0.18.0 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.16.4 to 0.18.0. - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.16.4...0.18.0) --- updated-dependencies: - dependency-name: lru dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 ++++++++++++++++++++++-- crates/tui/Cargo.toml | 2 +- 2 files changed, 23 insertions(+), 3 deletions(-) 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"