unbork toml

pull/8675/merge^2
mattwparas 2024-01-30 20:28:15 -08:00
parent a4145826cd
commit c902a23256
1 changed files with 2 additions and 2 deletions

View File

@ -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"