diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock index 62de7682a1f..9278707dd8c 100644 --- a/quickwit/Cargo.lock +++ b/quickwit/Cargo.lock @@ -2967,6 +2967,12 @@ version = "0.1.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" +[[package]] +name = "foldhash" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb" + [[package]] name = "foreign-types" version = "0.3.2" @@ -3432,7 +3438,18 @@ checksum = "84b26c544d002229e640969970a2e74021aadf6e2f96372b9c58eff97de08eb3" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", ] [[package]] @@ -4714,6 +4731,15 @@ dependencies = [ "hashbrown 0.15.3", ] +[[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" @@ -6872,7 +6898,7 @@ dependencies = [ "fnv", "futures", "itertools 0.14.0", - "lru 0.13.0", + "lru 0.16.3", "mockall", "once_cell", "proptest", @@ -7530,7 +7556,7 @@ dependencies = [ "futures", "http-body-util", "hyper 1.6.0", - "lru 0.13.0", + "lru 0.16.3", "md5", "mockall", "once_cell", diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml index 978d3b4c575..c0eba603694 100644 --- a/quickwit/Cargo.toml +++ b/quickwit/Cargo.toml @@ -145,7 +145,7 @@ lindera-tokenizer = { version = "0.27", features = [ "ko-dic-compress", "ko-dic", ] } -lru = "0.13" +lru = "0.16" matches = "0.1" md5 = "0.7" mime_guess = "2.0"