Hello and welcome to another issue of This Week in Rust! Rust is a systems language pursuing the trifecta: safety, concurrency, and speed. This is a weekly summary of its progress and community. Want something mentioned? Tweet us at @ThisWeekInRust or send us a pull request. Want to get involved? We love contributions.
This Week in Rust is openly developed on GitHub. If you find any errors in this week's issue, please submit a PR.
Updates from Rust Community
News & Blog Posts
- Announcing Rust 1.13.
- Schemers: Build a Scheme Interpreter in Rust - a tutorial for Rust beginners.
- Rapid prototyping C applications with Rust.
- Associated type constructors, part 4: Unifying ATC and HKT.
- Parallel iterators, part 3: Consumers.
- A quick tour of Rust’s Type System part 1: Sum Types (a.k.a. Tagged Unions).
- The fastest template engine in the West.
- Implementing Finite Automata in Rust (Part 2).
- Using Rust for ‘scripting’.
novemb.rs
novemb.rs, the distributed Rust hackfest, is happening this weekend. If you would like to participate, please refer to the website for a local meetup or for a chat to get in contact with other Rustceans. Note that if you want to attend a meetup, you should check on Friday for most up-to-date information.
Other Weeklies from Rust Community
- This week in Rust docs 30. Updates from the Rust documentation team.
- These weeks in Servo 83. Servo is a prototype web browser engine written in Rust.
- This week in TiKV 2016-11-14. TiKV is a distributed Key-Value database.
Crate of the Week
No crate was selected for CotW.
Call for Participation
Always wanted to contribute to open-source projects but didn't know where to start? Every week we highlight some tasks from the Rust community for you to pick and get started!
Some of these tasks may also have mentors available, visit the task page for more information.
- [less easy] rust: Separate foreign items in HIR.
- [less easy] rust: Separate trait items from trait.
- [easy] rust: docs: Explain why/when
.lines()
returns an error. - [easy] git-series: Highlight trailing whitespace.
- [easy] git-series: Support rebase --exec.
If you are a Rust project owner and are looking for contributors, please submit tasks here.
Updates from Rust Core
152 pull requests were merged in the last week.
- Stabilize
..
in tuple (struct) patterns. - Partially stabilize RFC 1506 "Clarify relationships between ADTs".
- Macro parser performance improvements and refactoring.
- Add
{into,from}_raw
to Rc and Arc. - Replace FNV with a faster hash function.
- Support
#[macro_reexport]
ing custom derives. - Replace syntax's SmallVector with AccumulateVec.
- Add support for ARMv5TE architecture.
- std: Derive
Default
forDuration
.
New Contributors
- abhijeetbhagat
- Angelo Polo
- Arthur Silva
- Havvy
- Josh Driver
- Juan Gomez
- karpinski
- meh
- Nicolas B. Pierron
- oldmanmike
- Trotter Cashion
Approved RFCs
Changes to Rust follow the Rust RFC (request for comments) process. These are the RFCs that were approved for implementation this week:
Final Comment Period
Every week the team announces the 'final comment period' for RFCs and key PRs which are reaching a decision. Express your opinions now. This week's FCPs are:
- Require documentation for all new features.
- Add two functions,
ptr::read_unaligned
andptr::write_unaligned
, which allows reading/writing to an unaligned pointer.
New RFCs
Style RFCs
Style RFCs are part of the process for deciding on style guidelines for the Rust community and defaults for Rustfmt. The process is similar to the RFC process, but we try to reach rough consensus on issues (including a final comment period) before progressing to PRs. Just like the RFC process, all users are welcome to comment and submit RFCs. If you want to help decide what Rust code should look like, come get involved!
PRs:
Ready for PR:
Final comment period:
Other notable issues:
Upcoming Events
- 11/16. Rust User Group Cologne - Open Source Audio Meetup.
- 11/16. London Rust meetup #10.
- 11/16. Rust LA Monthly Meetup - Hack Night.
- 11/16. Rust Community Team Meeting at #rust-community on irc.mozilla.org.
- 11/16. Rust Documentation Team Meeting at #rust-docs on irc.mozilla.org.
- 11/17. Rust release triage.
- 11/19 - 11/20. ./novemb.rs Code Sprint.
- 11/19 - 11/20. Rust Cologne - Weekend Special: Novemb.rs Code Sprint sponsored by Mozilla.
- 11/19 - 11/20. L'événement du Logiciel Libre à Toulouse.
- 11/19 - 11/20. Rust Vilnius - Boot Camp Rust.
- 11/21. Rust Paris meetup #34.
- 11/22. Kaspersky CoLaboratory: Moscow Rust Meetup.
- 11/23. Rust Community Team Meeting at #rust-community on irc.mozilla.org.
- 11/23. Rust Documentation Team Meeting at #rust-docs on irc.mozilla.org.
If you are running a Rust event please add it to the calendar to get it mentioned here. Email the Rust Community Team for access.
fn work(on: RustProject) -> Money
No jobs listed for this week.
Tweet us at @ThisWeekInRust to get your job offers listed here!
Quote of the Week
Now higher-kinded types especially are one of those PL topics that sound forebodingly complex and kind of abstract (like monads). But once you learn what it is, you realize it’s actually relevant to your life (unlike monads).
— @nikomatsakis invoking the M word in his blog post.
Thanks to Japaric for the suggestion.