more_sync/
lib.rs

1//! A collection of synchronization utils for concurrent programming.
2mod carrier;
3mod versioned_parker;
4
5pub use carrier::{Carrier, CarrierRef};
6pub use versioned_parker::{VersionedGuard, VersionedParker};