From d23a1624408f596bdcc17ca1eee8bd3ccf23ce64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 May 2026 10:54:50 +0000 Subject: [PATCH] Bump lru from 0.16.3 to 0.18.0 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.16.3 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.3...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 | 17 ++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index acc0243..95ae31f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -846,6 +846,17 @@ dependencies = [ "foldhash 0.2.0", ] +[[package]] +name = "hashbrown" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed5909b6e89a2db4456e54cd5f673791d7eca6732202bbf2a9cc504fe2f9b84a" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] + [[package]] name = "heck" version = "0.5.0" @@ -969,11 +980,11 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "lru" -version = "0.16.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" +checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9" dependencies = [ - "hashbrown 0.16.1", + "hashbrown 0.17.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 31913cc..9fff9b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ quick_cache = "0.6.21" # via `rustc_hash::FxBuildHasher`; both are `BuildHasherDefault`-shaped. rustc-hash = "2" stretto = { version = "0.8.4", features = ["full"] } -lru = "0.16.3" +lru = "0.18.0" TinyUFO = "0.8.0" mini-moka = "0.10.3" foyer = "0.22.3"