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

推荐订阅源

让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
WordPress大学
WordPress大学
U
Unit 42
I
InfoQ
A
About on SuperTechFans
宝玉的分享
宝玉的分享
J
Java Code Geeks
博客园 - 司徒正美
爱范儿
爱范儿
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
人人都是产品经理
人人都是产品经理
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
aimingoo的专栏
aimingoo的专栏
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Last Week in AI
Last Week in AI
腾讯CDC
Recent Announcements
Recent Announcements

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