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

#704 in Concurrency

Download history 345/week @ 2023-11-23 349/week @ 2023-11-30 329/week @ 2023-12-07 383/week @ 2023-12-14 431/week @ 2023-12-21 241/week @ 2023-12-28 322/week @ 2024-01-04 298/week @ 2024-01-11 496/week @ 2024-01-18 169/week @ 2024-01-25 241/week @ 2024-02-01 303/week @ 2024-02-08 462/week @ 2024-02-15 285/week @ 2024-02-22 401/week @ 2024-02-29 157/week @ 2024-03-07

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