This library is an alternative to [std::sync::mpsc
] with more features and better performance.
Add this to your Cargo.toml
:
toml
[dependencies]
crossbeam-channel = "0.3"
Next, add this to your crate:
```rust
extern crate crossbeam_channel; ```
The minimum required Rust version is 1.26.
Licensed under the terms of MIT license and the Apache License (Version 2.0).
See LICENSE-MIT and LICENSE-APACHE for details.