this post was submitted on 20 Feb 2025
46 points (100.0% liked)
Rust Programming
8386 readers
7 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
Ah, I was just wondering, if I should be upgrading all my libraries. It's not like many users would be impacted, but still good to be aware of.
In general, apps/bins should strive for the latest msrv and lastest dependencies
Libraries should do the reverse and try for the lowest msrv and dependencies version (That actually work! Don't put
version = "1"
when you need1.4.2
!)