summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorRemo Senekowitsch <remo@buenzli.dev>2024-08-08 01:23:58 +0200
committerRemo Senekowitsch <remo@buenzli.dev>2024-08-08 11:12:17 +0200
commitdc0ffbe16eb5ecc591422fe225ebb58f17b0e231 (patch)
treef3be38c538be03aebb16685ec463e2458cc2c717 /Cargo.toml
parent8df66f79918168617da9709c0edcfeb3ca0e53c8 (diff)
Replace hashbrown with ahash
hashbrown is already used in the standard library, but we want the improved performance of the different hash algorithm. Using ahash directly conveys this intent more clearly.
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index e76077d..47e1530 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -46,9 +46,9 @@ include = [
]
[dependencies]
+ahash = "0.8.11"
anyhow = "1.0.86"
clap = { version = "4.5.13", features = ["derive"] }
-hashbrown = "0.14.5"
notify-debouncer-mini = { version = "0.4.1", default-features = false }
os_pipe = "1.2.1"
ratatui = { version = "0.27.0", default-features = false, features = ["crossterm"] }