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

#936 in Concurrency

Download history 425/week @ 2024-03-14 528/week @ 2024-03-21 558/week @ 2024-03-28 446/week @ 2024-04-04 368/week @ 2024-04-11 436/week @ 2024-04-18 351/week @ 2024-04-25 420/week @ 2024-05-02 342/week @ 2024-05-09 377/week @ 2024-05-16 290/week @ 2024-05-23 347/week @ 2024-05-30 595/week @ 2024-06-06 425/week @ 2024-06-13 472/week @ 2024-06-20 311/week @ 2024-06-27

1,838 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