Crates.io | mpmc |
lib.rs | mpmc |
version | 0.1.6 |
source | src |
created_at | 2016-03-23 20:37:55.057283 |
updated_at | 2021-07-15 22:51:31.600928 |
description | copy-pasted from old rust stdlib |
homepage | https://github.com/brayniac/mpmc |
repository | https://github.com/brayniac/mpmc |
max_upload_size | |
id | 4539 |
size | 16,747 |
mpmc is a multi-produce multi-consumer queue which has been copied from the old Rust stdlib
NOTE: All conversations and contributions to this project shall adhere to the Code of Conduct
To use mpmc
, first add this to your Cargo.toml
:
[dependencies]
mpmc = "*"
Then, add this to your crate root:
extern crate mpmc;
The API documentation of this library can be found at docs.rs/mpmc.