dbus2 / zbus-old

Rust D-Bus crate.
https://gitlab.freedesktop.org/dbus/zbus
Other
49 stars 13 forks source link

Make use of parking_lot crate for synchronization primitives #208

Closed zeenix closed 1 year ago

zeenix commented 3 years ago

parking_lot provides faster and more flexible synchronization primitive API and a lot of crates use it for that reason. I also like how it rids of lock poisoning.

zeenix commented 3 years ago

Oh and it's already an indirect dep through once_cell at least (also a dev dependency through tokio).

zeenix commented 1 year ago

Actually things have changed since and the only dep using parking_lot has dropped it..