greshake / i3status-rust

Very resourcefriendly and feature-rich replacement for i3status, written in pure Rust
GNU General Public License v3.0
2.82k stars 472 forks source link

switch to std::sync::mpsc from crossbeam-channel #1936

Closed MaxVerevkin closed 10 months ago

MaxVerevkin commented 11 months ago

Since Rust 1.72, Sender implements Sync if T: Send, which lets us use it instead of crossbeam-channel - one less dependency.

Bumps MSRV to 1.72.