minor: Use a workspace dependency for parking_lot

This commit is contained in:
Michael Davis 2025-03-13 12:34:40 -04:00
parent fdaf12a35d
commit b47c9da3a1
No known key found for this signature in database
5 changed files with 5 additions and 4 deletions

View file

@ -18,7 +18,7 @@ tokio = { version = "1", features = ["rt", "rt-multi-thread", "time", "sync", "p
# the event registry is essentially read only but must be an rwlock so we can
# setup new events on initialization, hardware-lock-elision hugely benefits this case
# as it essentially makes the lock entirely free as long as there is no writes
parking_lot = { version = "0.12", features = ["hardware-lock-elision"] }
parking_lot = { workspace = true, features = ["hardware-lock-elision"] }
once_cell = "1.21"
anyhow = "1"