11 releases
Uses new Rust 2024
| 0.3.6 | May 9, 2026 |
|---|---|
| 0.3.5 | Apr 19, 2026 |
| 0.3.1 | Mar 13, 2026 |
| 0.2.0 | Mar 4, 2026 |
| 0.1.2 | Mar 3, 2026 |
#364 in Concurrency
13,780 downloads per month
Used in 30 crates
(2 directly)
28KB
675 lines
Producer/consumer shared state with async waker-based notification.
This crate provides Producer and Consumer types that share state through
a mutex-protected value. Producers can modify the state and consumers are
automatically notified via async wakers. The channel auto-closes when all
producers are dropped.
conducer
Producer/consumer shared state with async waker-based notification.
This crate provides Producer and Consumer types that share state through a mutex-protected value.
Producers can modify the state and consumers are automatically notified via async wakers.
The channel auto-closes when all producers are dropped.
It's used internally by moq-lite and friends, but is generic enough to be useful on its own.
See the API documentation for details.
Dependencies
~73KB