libsync 0.2.0

A library containing channels and other synchronisation object implementations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//!
//! Multi-producer multi-consumer channels based on [Crossbeam queues](https://docs.rs/crossbeam/0.8.4/crossbeam/queue/index.html).
//! 

//pub mod array_queue;

//pub mod seg_queue;

pub mod base;

//#[cfg(feature="std")]
//pub mod std;

#[cfg(feature="tokio")]
pub mod tokio;