mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-03 02:47:45 +03:00
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:
parent
1c47aec30c
commit
82f07fe6d1
5 changed files with 15 additions and 11 deletions
6
Cargo.lock
generated
6
Cargo.lock
generated
|
@ -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",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue