diff --git a/Cargo.lock b/Cargo.lock index 10f5f3b4..e7c83ac3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2532,6 +2532,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 = "form_urlencoded" version = "1.2.2" @@ -2846,7 +2852,7 @@ checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" dependencies = [ "allocator-api2", "equivalent", - "foldhash", + "foldhash 0.1.5", ] [[package]] @@ -2854,6 +2860,11 @@ name = "hashbrown" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "5419bdc4f6a9207fbeba6d11b604d481addf78ecd10c11ad51e76c2f6482748d" +dependencies = [ + "allocator-api2", + "equivalent", + "foldhash 0.2.0", +] [[package]] name = "heapless" @@ -3561,11 +3572,11 @@ checksum = "34080505efa8e45a4b816c349525ebe327ceaa8559756f0356cba97ef3bf7432" [[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.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 45400c98..33837acb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -61,7 +61,7 @@ approx = "0.5" abi_stable = "0.11.3" adbc_core = ">=0.21.0" adbc_ffi = ">=0.21.0" -lru = "0.12" +lru = "0.16" arrow = { version = "56.0.0", features = ["prettyprint", "ffi", "chrono-tz"] } arrow-array = { version = "56.0.0" } arrow-cast = { version = "56.0.0" }