5 releases

Uses old Rust 2015

0.1.6 Jul 15, 2021
0.1.5 Nov 18, 2017
0.1.4 Nov 18, 2017
0.1.3 Aug 19, 2017
0.1.2 Mar 23, 2016

#748 in Concurrency

Download history 480/week @ 2024-09-12 501/week @ 2024-09-19 538/week @ 2024-09-26 399/week @ 2024-10-03 252/week @ 2024-10-10 236/week @ 2024-10-17 164/week @ 2024-10-24 374/week @ 2024-10-31 236/week @ 2024-11-07 151/week @ 2024-11-14 229/week @ 2024-11-21 237/week @ 2024-11-28 456/week @ 2024-12-05 358/week @ 2024-12-12 344/week @ 2024-12-19 225/week @ 2024-12-26

1,402 downloads per month
Used in 8 crates (7 directly)

Custom license

11KB
196 lines

mpmc - multi-producer multi-consumer queue

mpmc is a multi-produce multi-consumer queue which has been copied from the old Rust stdlib

conduct-badge ci-badge downloads-badge release-badge license-badge

Code of Conduct

NOTE: All conversations and contributions to this project shall adhere to the Code of Conduct

Usage

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.

No runtime deps