From 73c151bd7ce3cc61d0a44395212a9892301059cd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Jan 2026 20:46:23 +0000 Subject: [PATCH] deps(deps): bump lru from 0.12.5 to 0.16.3 Bumps [lru](https://github.com/jeromefroe/lru-rs) from 0.12.5 to 0.16.3. - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.12.5...0.16.3) --- updated-dependencies: - dependency-name: lru dependency-version: 0.16.3 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 15 ++++++++++++--- orbit/server/Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 91c7f7c7..bec7b815 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5603,6 +5603,15 @@ dependencies = [ "hashbrown 0.15.5", ] +[[package]] +name = "lru" +version = "0.16.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" +dependencies = [ + "hashbrown 0.16.1", +] + [[package]] name = "lru-slab" version = "0.1.2" @@ -6000,7 +6009,7 @@ dependencies = [ "futures-sink", "futures-util", "keyed_priority_queue", - "lru", + "lru 0.12.5", "mysql_common", "native-tls", "pem", @@ -6974,7 +6983,7 @@ dependencies = [ "hyper 1.8.1", "hyper-util", "lazy_static", - "lru", + "lru 0.16.3", "lz4_flex 0.11.5", "md5", "metrics", @@ -10457,7 +10466,7 @@ dependencies = [ "itertools 0.12.1", "levenshtein_automata", "log", - "lru", + "lru 0.12.5", "lz4_flex 0.11.5", "measure_time", "memmap2", diff --git a/orbit/server/Cargo.toml b/orbit/server/Cargo.toml index ffae3b16..869d7763 100644 --- a/orbit/server/Cargo.toml +++ b/orbit/server/Cargo.toml @@ -61,7 +61,7 @@ rmp-serde = "1.3" # MessagePack serialization for Python UDF communication # WASM UDF Support wasmtime = { version = "39.0", optional = true, features = ["async"] } # WASM runtime wasmtime-wasi = { version = "39.0", optional = true } # WASI support for file/network I/O -lru = "0.12" # LRU cache for compiled WASM modules +lru = "0.16" # LRU cache for compiled WASM modules bincode = "1.3" tracing.workspace = true tracing-subscriber.workspace = true