Hello and welcome to another issue of This Week in Rust! Rust is a systems language pursuing the trifecta: safe, concurrent, and fast. This is a weekly summary of its progress and community. Want something mentioned? Send me an email! Want to get involved? We love contributions.

It's been a slow week due to the holidays. In the next week or two 0.9 is being released. It's an exciting release, but in more subtler ways than the previous 3. Many small details, especially around the runtime and linking, have changed that make Rust faster and more flexible without necessarily being a breaking change. As always, the detailed changelog will have the nitty-gritties.

What's cooking on master?

36 pull requests were merged this week. bors was feeling unwell for a bit, due to a deadlock in a scheduler test that was fixed today and a deadlock in (incorrect usage of) LLVM.

Breaking changes

Other Changes

  • libnative has process and TCP implementations.
  • Coercion of types into trait objects is now supported, which means as ~SomeTrait and as &Reader can be left out.
  • I normally wouldn't mention this since it's internal to the compiler, but Patrick made a heroic effort to remove @mut from all the places.
  • rustdoc can now test doc comments. See the pull request for details on how and what is tested (also in the rustdoc manual).

New contributors

  • Sébastien Paolacci

Meeting

There was no meeting this week due to the holiday.

This Week in Servo

Servo is a web browser engine written in Rust and is one of the primary test cases for the Rust language.

Mozilla is on an extended holiday break until January 2nd, but we still landed 2 PRs this week.

Notable additions

  • Jack Moffitt re-enabled building with make to enable work on cross-targeting ARM in #1441.
  • ms2ger cleaned up how we handle namespaces in DOM elements #1438

Announcements, etc