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

推荐订阅源

月光博客
月光博客
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
H
Help Net Security
小众软件
小众软件
The Cloudflare Blog
人人都是产品经理
人人都是产品经理
Apple Machine Learning Research
Apple Machine Learning Research
S
SegmentFault 最新的问题
Last Week in AI
Last Week in AI
爱范儿
爱范儿
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
博客园 - 【当耐特】
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
博客园_首页
Jina AI
Jina AI
D
Docker
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Microsoft Security Blog
Microsoft Security 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-10-10 Compiler Team Triage Meeting | Inside Rust Blog
Wesley Wiser on behalf of the compiler team · 2019-10-15 · via Rust Blog

The compiler team had our weekly triage meeting on 2019-10-10. 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

  • @centril is splitting libsyntax into data and logic parts which will decrease the amount of code librustc depends on.

  • @nagisa is working on a cross-platform version of stacker which will allow us to avoid stack overflows in rustc.

  • There is a compiler team design meeting scheduled for tomorrow (2019-10-11) to discuss some of @Zoxc's PRs.

  • @pnkfelix is revising the code that handles structural match checking.

  • @nikomatsakis has a PR (#65232) up which helps us get closer to lazy normalization.

  • wg-traits is going to start holding a weekly "office hours" video call to help answer questions and teach people about trait system internals.

Working group sync

wg-rustc-dev-guide

wg-rustc-dev-guide aims to make the compiler easier to learn by ensuring that rustc-dev-guide and api docs are “complete”.

  • wg-rustc-dev-guide has been working on transcribing videos from the compiler lecture series into rustc-dev-guide chapters.

  • Originally, individuals were assigned one or lectures to complete but that hasn't worked very well.

  • Recently, they're trying to work on one video at a time as a team with much better results.

  • There's a PR open for a new chapter based on the ty lecture.

Link to full discussion

wg-llvm

wg-llvm encompasses work in LLVM upstream fixing the issues and implementing features that matter to Rust.

  • rustc has upgraded to the LLVM 9 release;
    • Which allows us to replace some the emscripten stuff with LLVM’s toolchain.
    • As part of these upgrades we will likely end up dropping support for the super old LLVM 6, which in turn allows us to stop building the unnecessary Go & OCaml bindings to LLVM, which in turn helps rustc build times slightly.
  • People are also working on enabling use of the new pass manager, which might give us some tangible code quality improvements over the status quo.

Link to full discussion