diff --git a/helix-event/Cargo.toml b/helix-event/Cargo.toml index d6d17dd7f..f3c721581 100644 --- a/helix-event/Cargo.toml +++ b/helix-event/Cargo.toml @@ -13,11 +13,11 @@ homepage.workspace = true [dependencies] ahash = "0.8.3" +hashbrown = "0.14.0" +tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] } # the event registry is essentially read only but must be an rwlock so we can # setup new events on intalization, hardware-lock-elision hugnly benefits this case # as is essentially makes the lock entirely free as long as there is no writes -hashbrown = "0.14.0" -tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "parking_lot", "macros"] } parking_lot = { version = "0.12", features = ["hardware-lock-elision"] } once_cell = "1.18"