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