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

#780 in Concurrency

Download history 145/week @ 2024-11-17 208/week @ 2024-11-24 307/week @ 2024-12-01 453/week @ 2024-12-08 419/week @ 2024-12-15 211/week @ 2024-12-22 267/week @ 2024-12-29 269/week @ 2025-01-05 602/week @ 2025-01-12 251/week @ 2025-01-19 274/week @ 2025-01-26 429/week @ 2025-02-02 449/week @ 2025-02-09 458/week @ 2025-02-16 486/week @ 2025-02-23 604/week @ 2025-03-02

2,030 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