this post was submitted on 24 Aug 2023
54 points (98.2% liked)
Rust Programming
8188 readers
44 users here now
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
A lot of nice QoL changes (checking for missing feature flags, for example) but the thing that stood out to me the most was
impl Sync for mpsc::Sender
. This has always been a pain point in my opinion for the standard library's channels, but now that they're usingcrossbeam-channel
internally, there's no need to add it as a dependency anymore.I think some people will be upset by them dropping support for older Windows versions. I can see why they would not want to continue support for them though, it takes extra work to maintain compatibility for those old OS versions and the vast majority of users (by percentage) are on 10/11 now. Still, a shame.