Update lru to 0.13.0

This commit is contained in:
Benjamin A. Beasley
2025-03-21 08:12:11 -04:00
committed by Johannes Altmanninger
parent ea8e122fad
commit a5adb362b0
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View File

@@ -194,9 +194,9 @@ checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
[[package]]
name = "lru"
version = "0.12.5"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
checksum = "227748d55f2f0ab4735d87fd623798cb6b664512fe979705f829c9f81c934465"
dependencies = [
"hashbrown",
]

View File

@@ -39,7 +39,7 @@ libc = "0.2"
# lru pulls in hashbrown by default, which uses a faster (though less DoS resistant) hashing algo.
# disabling default features uses the stdlib instead, but it doubles the time to rewrite the history
# files as of 22 April 2024.
lru = "0.12.3"
lru = "0.13.0"
nix = { version = "0.29.0", default-features = false, features = [
"event",
"inotify",