this post was submitted on 09 Aug 2025
41 points (97.7% liked)

Programming

22458 readers
234 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 2 years ago
MODERATORS
 

Rust 1.89 is now released, expanding x86 and x86/x86_64 platform support with new processor instructions and features, including additional AVX-512 intrinsics. The target_feature attribute adds support for SHA512, SM3, SM4, KL, and WIDEKL, giving developers better access to modern CPU capabilities directly from Rust code.

Full changelog: https://blog.rust-lang.org/2025/08/07/Rust-1.89.0/

you are viewing a single comment's thread
view the rest of the comments
[–] Giooschi@lemmy.world 12 points 3 weeks ago

https://doc.rust-lang.org/nightly/rustc/platform-support.html

Tier 1 targets can be thought of as "guaranteed to work". The Rust project builds official binary releases for each tier 1 target, and automated testing ensures that each tier 1 target builds and passes tests after each change.

https://doc.rust-lang.org/nightly/rustc/target-tier-policy.html#tier-1-target-policy

The target must build and pass tests reliably in CI, for all components that Rust's CI considers mandatory.

Github is removing support for CI on that target, and since that's a requirement for Tier 1 support the target has to be downgraded.