this post was submitted on 20 Feb 2025
46 points (100.0% liked)
Rust Programming
8386 readers
6 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
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
!)