mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-10 07:04:29 +00:00
add comment regarding lru hashing algorithm
This commit is contained in:
parent
f4a3dcca3a
commit
698d8bd315
1 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,9 @@ bitflags = "2.4.0"
|
|||
errno = "0.2.8"
|
||||
lazy_static = "1.4.0"
|
||||
libc = "0.2.137"
|
||||
# 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.10.0"
|
||||
nix = { version = "0.25.0", default-features = false, features = ["inotify", "resource", "fs"] }
|
||||
num-traits = "0.2.15"
|
||||
|
|
Loading…
Reference in a new issue