From c902a23256fd746b855a4b5bfa56f6867f2df946 Mon Sep 17 00:00:00 2001 From: mattwparas Date: Tue, 30 Jan 2024 20:28:15 -0800 Subject: [PATCH] unbork toml --- helix-event/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"