Ephera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 5 days agoAnnouncing Rust 1.85.0 and Rust 2024blog.rust-lang.orgexternal-linkmessage-square11fedilinkarrow-up147arrow-down10cross-posted to: [email protected][email protected]
arrow-up147arrow-down1external-linkAnnouncing Rust 1.85.0 and Rust 2024blog.rust-lang.orgEphera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 5 days agomessage-square11fedilinkcross-posted to: [email protected][email protected]
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up3·4 days agoBe careful to not upgrade Libraries, as it implicitly bump the msrv ;)
minus-squareEphera@lemmy.mlOPlinkfedilinkEnglisharrow-up3·4 days agoAh, 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.
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up2·4 days agoIn 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 need 1.4.2!)
Be careful to not upgrade Libraries, as it implicitly bump the msrv ;)
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
!)