Ephera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 2 months agoAnnouncing Rust 1.85.0 and Rust 2024blog.rust-lang.orgexternal-linkmessage-square8fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1external-linkAnnouncing Rust 1.85.0 and Rust 2024blog.rust-lang.orgEphera@lemmy.ml to Rust Programming@lemmy.mlEnglish · 2 months agomessage-square8fedilink
minus-squareRustyNova@lemmy.worldlinkfedilinkarrow-up0·2 months 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!)
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
!)