From 141da277072a3997a641069353158b3404192b22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Dec 2025 13:52:23 +0000 Subject: [PATCH] chore(deps)(deps): bump lru from 0.12.5 to 0.16.2 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.12.5 to 0.16.2. - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.12.5...0.16.2) --- updated-dependencies: - dependency-name: lru dependency-version: 0.16.2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 20 +++++++------------- crates/node/Cargo.toml | 2 +- 2 files changed, 8 insertions(+), 14 deletions(-) mode change 100755 => 100644 Cargo.lock mode change 100755 => 100644 crates/node/Cargo.toml diff --git a/Cargo.lock b/Cargo.lock old mode 100755 new mode 100644 index dbe8d69e..bb7a0777 --- a/Cargo.lock +++ b/Cargo.lock @@ -1166,9 +1166,9 @@ checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" [[package]] name = "foldhash" -version = "0.1.5" +version = "0.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" [[package]] name = "foreign-types" @@ -1423,21 +1423,15 @@ dependencies = [ [[package]] name = "hashbrown" -version = "0.15.5" +version = "0.16.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" dependencies = [ "allocator-api2", "equivalent", "foldhash", ] -[[package]] -name = "hashbrown" -version = "0.16.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" - [[package]] name = "hashlink" version = "0.8.4" @@ -2086,11 +2080,11 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "lru" -version = "0.12.5" +version = "0.16.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38" +checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f" dependencies = [ - "hashbrown 0.15.5", + "hashbrown 0.16.1", ] [[package]] diff --git a/crates/node/Cargo.toml b/crates/node/Cargo.toml old mode 100755 new mode 100644 index be9f2cf6..d0745e00 --- a/crates/node/Cargo.toml +++ b/crates/node/Cargo.toml @@ -50,7 +50,7 @@ tokio = { version = "1.35", features = ["full"] } reqwest = { version = "0.12", features = ["json"] } uuid = { version = "1.6", features = ["v4", "serde"] } dashmap = "5.5" -lru = "0.12" +lru = "0.16" rusqlite = { version = "0.30", features = ["bundled"] } warp = "0.3" async-trait = "0.1.89"