diff --git a/Cargo.lock b/Cargo.lock index feddccd84..e81fe27df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3615,6 +3615,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 = "hashlink" version = "0.10.0" @@ -4506,11 +4517,11 @@ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" [[package]] name = "lru" -version = "0.16.2" +version = "0.18.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "96051b46fc183dc9cd4a223960ef37b9af631b55191852a8274bfef064cda20f" +checksum = "0b6180140927ee907000b0aa540091f6ea512ead4447c92b8fc35bc72788a5a6" dependencies = [ - "hashbrown 0.16.0", + "hashbrown 0.17.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index c2a191e40..a0877d6c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ iceberg = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73 iceberg-catalog-glue = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73e7c68b0a24441820b13bdd22a92" } iceberg-catalog-rest = { git = "https://github.com/apache/iceberg-rust", rev = "4a6ea15a7dd73e7c68b0a24441820b13bdd22a92" } itertools = "0.14" -lru = "0.16" +lru = "0.18" moka = { version = "0.12", features = ["future"] } moonlink = { path = "src/moonlink" } moonlink_backend = { path = "src/moonlink_backend" }