惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
J
Java Code Geeks
F
Fortinet All Blogs
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
U
Unit 42
B
Blog
宝玉的分享
宝玉的分享
腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
博客园 - Franky
博客园 - 三生石上(FineUI控件)
人人都是产品经理
人人都是产品经理
Martin Fowler
Martin Fowler
博客园_首页
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
云风的 BLOG
云风的 BLOG
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
博客园 - 叶小钗

Rust Blog

Security Advisory for Cargo (CVE-2026-5223) | Rust Blog Security Advisory for Cargo (CVE-2026-5222) | Rust Blog Project goals update — April 2026 (end of 2025H2) | Rust Blog Rust is participating in Outreachy | Rust Blog Raising the baseline for the `nvptx64-nvidia-cuda` target | Rust Blog Announcing Google Summer of Code 2026 selected projects | Rust Blog Announcing Rust 1.95.0 | Rust Blog docs.rs: building fewer targets by default | Rust Blog Changes to WebAssembly targets and handling undefined symbols | Rust Blog Announcing Rust 1.94.1 | Rust Blog Security advisory for Cargo | Rust Blog What we heard about Rust's challenges | Rust Blog Call for Testing: Build Dir Layout v2 | Rust Blog Announcing rustup 1.29.0 | Rust Blog Announcing Rust 1.94.0 | Rust Blog 2025 State of Rust Survey Results | Rust Blog Rust debugging survey 2026 | Rust Blog Update on the October 15, 2018 incident on crates.io Announcing Rust 1.29.2 Announcing Rust 1.29 Announcing Rust 1.28 What is Rust 2018? Announcing Rust 1.27.2 Announcing Rust 1.27.1 Security Advisory for rustdoc Announcing Rust 1.27 Announcing Rust 1.26.2 Announcing Rust 1.26.1 Rust turns three Announcing Rust 1.26
2019-11-14 Compiler Team Triage Meeting | Inside Rust Blog
Wesley Wiser on behalf of the compiler team · 2019-11-19 · via Rust Blog

The compiler team had our weekly triage meeting on 2019-11-14. You can find the minutes on the compiler-team repository. Each week, we have general announcements from the team followed by check-ins from two of the compiler team working groups.

Announcements

  • Request for assistance: "Rustc panics (NoSolution): could not prove Binder(projection soup)" #65581

  • Request for assistance: "Rust 1.38 regressions weren't fully triaged" #65577

  • Request for assistance: "Miscompilation with target-cpu=znver1 (AMD Ryzen 1000/2000 series) on Windows + LLVM 9." #63959

  • @cjgillot replaced a lot of TypeFoldable impls with a derive #66384

  • The Infra team has finished evaluating GitHub Actions and we're switching!

    • This will have a significant, positive impact on CI build time.
  • @centril is fixing useless <std macros> spans #66364

Working group sync

This week we heard from three working groups because we ran out of time in the previous meeting.

wg-polonius

  • Made a lot of progress on the completeness goals with move/initialization errors and subset errors both getting close to completion.

  • Fixed the last failure in the rustc test suite.

    • There are still the same 2 OOMs as last time, we haven't had much time to look at those yet.
  • Made diagnostics output match NLL in a lot more cases.

  • Did some cleanup in our terminology by picking better names for our atoms hopefully making it clearer in the process, and more work is planned here.

    • "origin" instead of "region"
    • "path" instead of "MovePath"
  • There is a polonius book now! It's sparse at the moment but more documentation work is in-flight and planned.

  • The exploration and prototype on the rules offering more flow-sensitive precision for the analysis has also progressed a lot.

  • There's also been some refactoring, and quite a bit of work on performance. Since the latter can step on the other work and vice-versa, we decided to focus on completeness first, and then after that has been achieved, re-adapt and land the optimization work.

  • @nikomatsakis did a presentation on Polonius at RustBelt Rust. Slides

  • @albins has finished their master's thesis and is currently rewriting most of the draft.

  • We hope to have a "polonius work week" at the end of November to push the in-progress work over the finish line together.

wg-self-profile

  • We've nearly completed our long standing MVP goal!

    • @simulacrum has done some nice work to polish the integration with perf.rlo
    • We've added tracking for all the events we're aware of that should be traced with the exception of trait selection.
      • We could really use some input as to what would be helpful to track!
  • @mw has been working on some changes to the binary format we record events in.

    • The new format is more compact so results in a smaller trace file and hopefully less runtime overhead.
    • The new format is also more amenable to recording query keys, which is a highly requested feature.
  • @wesleywiser has added some crate level docs to make getting into the code easier.

  • @wesleywiser also added code to record process id, start time, and arguments to the trace file which we've started using.

  • @andjo403 has been a roll with a lot of great PRs!

    • We now have a dedicated tool for generating flamegraphs directly so you don't have to use the Perl scripts anymore.
    • Some internal refactoring that makes adding new tools easier.
    • Lots of work on the Chromium dev tools exporter:
      • New option to collapse disjoint threads so it's a little more manageable
      • New option to filter out small events under a configurable threshold (necessary for very large compilations)
      • You can now have multiple crate compilations in the same export file. This is similar to what cargo build -Z timings can do but much more detailed.

wg-rls-2.0

  • Work is proceeding on splitting core of rust-analyzer into crates.

  • Find usages is implemented.

  • Macro expansion now can map source ranges to expanded ranges, so goto def correctly goes "inside" macro call.

  • More chalk an type inference work, specifically, support for closures.

  • There's ongoing discussion about the general planning about rustc, rls, and rust-analyzer.