Migrate helix-event to foldhash

This is following `hashbrown`'s switch in v0.15 from ahash to foldhash
for its `default-haster` feature, applied only to helix-event for now.

I don't have a strong preference between the two. Benchmarks in
Spellbook, which is particularly sensitive to hashers and hash table
performance, show no perceptible difference. Foldhash is dependency-free
though.

Once we migrate to the new tree-sitter bindings and highlighter we
should be able to eliminate the remaining dependencies on ahash.
This commit is contained in:
Michael Davis 2025-02-17 17:28:57 -05:00
parent 1c47aec30c
commit 82f07fe6d1
No known key found for this signature in database
5 changed files with 15 additions and 11 deletions

6
Cargo.lock generated
View file

@ -1310,6 +1310,8 @@ version = "0.15.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
]
@ -1371,10 +1373,10 @@ dependencies = [
name = "helix-event"
version = "25.1.1"
dependencies = [
"ahash",
"anyhow",
"foldhash",
"futures-executor",
"hashbrown 0.14.5",
"hashbrown 0.15.2",
"log",
"once_cell",
"parking_lot",