uchan 0.1.0

Multi-producer single-consumer channel for message passing
Documentation
# μchan

Small, scalable, unbounded, mpsc channel.

[![Cargo](https://img.shields.io/crates/v/uchan.svg)](
https://crates.io/crates/uchan)
[![Documentation](https://docs.rs/uchan/badge.svg)](
https://docs.rs/uchan)
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](
https://github.com/kprotty/uchan)

This is (almost) a drop-in replacement for `std::sync::mpsc` with a focus on being lock-free and scalable for both producers and consumers.
It also supports being used as `#![no_std]`, in which the caller provides a trait used to block and unblock a thread, with the queue implementing everything else from there. Finally, `benchmark/` contains (you guessed it) robust benchmarks against other channel implementations/

## Usage


```toml
[dependencies]
uchan = "0.1.0"
```

## License


uchan is licensed under MIT (http://opensource.org/licenses/MIT)