]> git.proxmox.com Git - rustc.git/blobdiff - vendor/crossbeam-channel/README.md
New upstream version 1.43.0+dfsg1
[rustc.git] / vendor / crossbeam-channel / README.md
index 39f1e21bb67f3d18837c69b5e72c98fb0e179f0f..be2e0b8f32cc9a0ced7c4adeeb4e69fa8c52c8d0 100644 (file)
@@ -8,8 +8,9 @@ https://github.com/crossbeam-rs/crossbeam-channel)
 https://crates.io/crates/crossbeam-channel)
 [![Documentation](https://docs.rs/crossbeam-channel/badge.svg)](
 https://docs.rs/crossbeam-channel)
-[![Rust 1.26+](https://img.shields.io/badge/rust-1.26+-lightgray.svg)](
+[![Rust 1.28+](https://img.shields.io/badge/rust-1.28+-lightgray.svg)](
 https://www.rust-lang.org)
+[![chat](https://img.shields.io/discord/569610676205781012.svg?logo=discord)](https://discord.gg/BBYwKq)
 
 This crate provides multi-producer multi-consumer channels for message passing.
 It is an alternative to [`std::sync::mpsc`] with more features and better performance.
@@ -40,7 +41,7 @@ Add this to your `Cargo.toml`:
 
 ```toml
 [dependencies]
-crossbeam-channel = "0.3"
+crossbeam-channel = "0.4"
 ```
 
 Next, add this to your crate:
@@ -50,6 +51,10 @@ Next, add this to your crate:
 extern crate crossbeam_channel;
 ```
 
+## Compatibility
+
+The minimum supported Rust version is 1.28. Any change to this is considered a breaking change.
+
 ## License
 
 Licensed under either of