diff --git a/Cargo.lock b/Cargo.lock index acc0243..95ae31f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -846,6 +846,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 = "heck" version = "0.5.0" @@ -969,11 +980,11 @@ checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" [[package]] name = "lru" -version = "0.16.3" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a1dc47f592c06f33f8e3aea9591776ec7c9f9e4124778ff8a3c3b87159f7e593" +checksum = "8a860605968fce16869fd239cf4237a82f3ac470723415db603b0e8b6c8d4fb9" dependencies = [ - "hashbrown 0.16.1", + "hashbrown 0.17.1", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 31913cc..9fff9b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ quick_cache = "0.6.21" # via `rustc_hash::FxBuildHasher`; both are `BuildHasherDefault`-shaped. rustc-hash = "2" stretto = { version = "0.8.4", features = ["full"] } -lru = "0.16.3" +lru = "0.18.0" TinyUFO = "0.8.0" mini-moka = "0.10.3" foyer = "0.22.3"