switchy_async 0.2.0

Switchy Async runtime package
Documentation
1
2
3
4
5
6
7
8
//! Multi-producer, single-consumer channel implementation.
//!
//! This module provides MPSC channels for message passing between tasks.

pub mod flume;
pub mod tokio;

pub use tokio::*;