diff options
author | Pascal Kuthe | 2022-11-22 02:54:22 +0000 |
---|---|---|
committer | GitHub | 2022-11-22 02:54:22 +0000 |
commit | f538b697597dccdd2492606858f0976c7cf7e4d2 (patch) | |
tree | 9e5e0709fc386462629c8ac5d832c66e8eb372ae /helix-core/Cargo.toml | |
parent | 9059c65a5385f6d3cc0bc7f6e3f835ae542635a5 (diff) |
significantly improve treesitter performance while editing large files (#4716)
* significantly improve treesitter performance while editing large files
* Apply stylistic suggestions from code review
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
* use PartialEq and Hash instead of a freestanding function
Co-authored-by: Michael Davis <mcarsondavis@gmail.com>
Diffstat (limited to 'helix-core/Cargo.toml')
-rw-r--r-- | helix-core/Cargo.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/helix-core/Cargo.toml b/helix-core/Cargo.toml index 45272f98..eb886c90 100644 --- a/helix-core/Cargo.toml +++ b/helix-core/Cargo.toml @@ -30,6 +30,8 @@ once_cell = "1.16" arc-swap = "1" regex = "1" bitflags = "1.3" +ahash = "0.8.2" +hashbrown = { version = "0.13.1", features = ["raw"] } log = "0.4" serde = { version = "1.0", features = ["derive"] } |