0.1.0 - This version may not be safe as it has not been updated for a long time. Find out if your coding project uses this component and get notified of any reported security vulnerabilities with Meterian-X Open Source Security Platform
Maintain your licence declarations and avoid unwanted licences to protect your IP the way you intended.
MIT - MIT LicenseSynchronisation primitives for !Send tasks.
This crate provides the following task synchronisation mechanisms for !Send futures:
Barrier: Ensures multiple tasks to wait until all tasks have reached a point in the
program before continuing execution of all together.RwLock: Provides a mutual exclusion mechanism which allows multiple readers at the same
time, while allowing only one writer at a time.mpsc: A channel that supports sending multiple values from multiple producers to a single
receiver.oneshot: A channel to send one single value from a producer to a receiver.