• This repository has been archived on 05/Nov/2018
  • Stars
    star
    323
  • Rank 125,699 (Top 3 %)
  • Language
    Rust
  • License
    Apache License 2.0
  • Created over 6 years ago
  • Updated over 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Multi-producer multi-consumer channels for message passing

NOTE: This crate has been moved into the crossbeam repository.

Do not use this repository.

Multi-producer multi-consumer channels for message passing

Build Status License Cargo Documentation

This library is an alternative to std::sync::mpsc with more features and better performance.

Usage

Add this to your Cargo.toml:

[dependencies]
crossbeam-channel = "0.3"

Next, add this to your crate:

#[macro_use]
extern crate crossbeam_channel;

The minimum required Rust version is 1.26.

License

Licensed under the terms of MIT license and the Apache License (Version 2.0).

See LICENSE-MIT and LICENSE-APACHE for details.