Title: This Week in Rust 202 Number: 202 Date: 2017-10-03 Category: This Week in Rust Hello and welcome to another issue of *This Week in Rust*! [Rust](http://rust-lang.org) 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](https://twitter.com/ThisWeekInRust) or [send us a pull request](https://github.com/cmr/this-week-in-rust). Want to get involved? [We love contributions](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md). *This Week in Rust* is openly developed [on GitHub](https://github.com/cmr/this-week-in-rust). If you find any errors in this week's issue, [please submit a PR](https://github.com/cmr/this-week-in-rust/pulls). # Updates from Rust Community ## News & Blog Posts * [The 2016 Underhanded Rust Contest results](http://blog.community.rs/underhanded/2017/09/27/underhanded-results.html). * [How `Future` works](https://gist.github.com/Diggsey/6f924bf3f741bcdffd240faee102fe92). * [Attacking Rust for fun and profit](https://avadacatavra.github.io/rust/gdb/exploit/2017/09/26/attackingrustforfunandprofit.html). * [Calling Rust from C#](https://dev.to/living_syn/calling-rust-from-c-6hk). * [Testing a Rust command line tool](https://mattgathu.github.io/testing-rust-cli-apps/). * [This year in the Amethyst game engine](https://www.amethyst.rs/2017/09/16/twia-10.html). * [This week in Rust docs 75](https://guillaumegomez.github.io/this-week-in-rust-docs/blog/this-week-in-rust-docs-75). * [RustFest Spring 2018 will be in Paris](https://twitter.com/rustlang/status/914169823009103872). # Crate of the Week Sadly, no one suggested a crate for the week. [Submit your suggestions and votes for next week][submit_crate]! [submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704 # 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. * [Contribute to Rust's 2017 impl period](https://www.rustaceans.org/findwork/impl). * [impl period opportunities: Diesel](https://medium.com/@sgrif/impl-version-1-0-for-diesel-10f5872c7be). * [Way Cooler is looking for help with milestone 0.7](https://github.com/way-cooler/way-cooler/issues?q=is%3Aopen+is%3Aissue+milestone%3A0.7+label%3A%22Help+Wanted%22). If you are a Rust project owner and are looking for contributors, please submit tasks [here][guidelines]. [guidelines]: https://users.rust-lang.org/t/twir-call-for-participation/4821 # Updates from Rust Core 100 pull requests were [merged in the last week][merged] [merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2017-09-25..2017-10-02 * [fix native main() signature on 64bit](https://github.com/rust-lang/rust/pull/44906) * [add suggestions for misspelled method names](https://github.com/rust-lang/rust/pull/44297) * [code suggestions for unused-mut, while-true, deprecated-attribute, and unused-parens lints](https://github.com/rust-lang/rust/pull/44942) * [allow unused extern crate again](https://github.com/rust-lang/rust/pull/44825) (backs out until diagnostics are fixed) * [friendlier error message for closure argument type mismatch](https://github.com/rust-lang/rust/pull/44735) * [macros: fix bug in collecting trait and impl items with derives](https://github.com/rust-lang/rust/pull/44757) * [apply attr proc macros before cfg processing](https://github.com/rust-lang/rust/pull/44528) * [handle nested generics in `Generics::type_param`/`region_param`](https://github.com/rust-lang/rust/pull/44959) * [encode region::Scope using fewer bytes](https://github.com/rust-lang/rust/pull/44809) * [initial support for `..=` syntax](https://github.com/rust-lang/rust/pull/44709) * [some fixes to mir-borrowck](https://github.com/rust-lang/rust/pull/44736) * [allow replacing HashMap entries](https://github.com/rust-lang/rust/pull/44278) * [`impl TryFrom for U where U: From`](https://github.com/rust-lang/rust/pull/44174) * [`impl Try for Option](https://github.com/rust-lang/rust/pull/42526) (this was a long time coming) * [do not require semantic types for all syntactic types when there are errors](https://github.com/rust-lang/rust/pull/44945) * [add more custom folding to `core::iter` adaptors](https://github.com/rust-lang/rust/pull/44856) * [trustedRandomAccess specialisation for Iterator::cloned when Item: Copy](https://github.com/rust-lang/rust/pull/44790) * [fix capacity comparison in `VecDeque::reserve`](https://github.com/rust-lang/rust/pull/44802) ## New Contributors * Badel2 * Ben Cressey * Daniel Klauer * Jeroen Bollen * Matthias Devlamynck * Sean Prashad * Tomas Nilsson * Vitaly Vi Shukela ## Approved RFCs Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These are the RFCs that were approved for implementation this week: * [RFC 2094: Non-lexical lifetimes](https://github.com/rust-lang/rfcs/pull/2094). * [RFC 2137: Support defining C-compatible variadic functions in Rust](https://github.com/rust-lang/rfcs/pull/2137). * [RFC 2141: Add support to Cargo for alternative registries](https://github.com/rust-lang/rfcs/pull/2141). ## Final Comment Period Every week [the team](https://www.rust-lang.org/team.html) announces the 'final comment period' for RFCs and key PRs which are reaching a decision. Express your opinions now. [This week's FCPs][fcp] are: [fcp]: https://github.com/rust-lang/rfcs/labels/final-comment-period * [disposition: merge] [Fallible collection allocation 1.0](https://github.com/rust-lang/rfcs/pull/2116). * [disposition: merge] [Implicit caller location (third try to the unwrap/expect line info problem)](https://github.com/rust-lang/rfcs/pull/2091). * [disposition: merge] [Unsized rvalues](https://github.com/rust-lang/rfcs/pull/1909). * [disposition: merge] [eRFC: Cargo build system integration](https://github.com/rust-lang/rfcs/pull/2136). * [disposition: merge] [Type privacy and private-in-public lints](https://github.com/rust-lang/rfcs/pull/2145). ## New RFCs * [impl-only-use](https://github.com/rust-lang/rfcs/pull/2166). The `use …::{… as …}` syntax can now accept `_` as alias to a trait to only import the implementations of such a trait. # Upcoming Events * [Oct 5. Rust release triage](https://internals.rust-lang.org/t/release-cycle-triage-proposal/3544). * [Oct 7. Rust Bangalore SQL Data Binding Workshop](https://www.meetup.com/rustox/events/243387585/). * [Oct 9. Rust Seattle Monthly Meetup](https://www.meetup.com/Seattle-Rust-Meetup/events/243267474/). * [Oct 11. Rust Community Team Meeting at #rust-community on irc.mozilla.org](https://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-community). * [Oct 11. Rust Documentation Team Meeting at #rust-docs on irc.mozilla.org](https://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-docs). * [Oct 12. Rust Washington DC - Mid-month Rustful](https://www.meetup.com/RustDC/events/243672292/). * [Oct 12. Columbus Rust Society - Monthly Meeting](https://www.meetup.com/columbus-rs/events/243389836/). * [Oct 18. OpenTechSchool Berlin - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/243663198/). * [Oct 18. Rust Community Team Meeting at #rust-community on irc.mozilla.org](https://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-community). * [Oct 18. Rust Documentation Team Meeting at #rust-docs on irc.mozilla.org](https://chat.mibbit.com/?server=irc.mozilla.org&channel=%23rust-docs). * [Oct 19. Rust release triage](https://internals.rust-lang.org/t/release-cycle-triage-proposal/3544). If you are running a Rust event please add it to the [calendar] to get it mentioned here. Email the [Rust Community Team][community] for access. [calendar]: https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com [community]: mailto:community-team@rust-lang.org # Rust Jobs * [Rust Research Intern - University 2018 - Mozilla](https://careers.mozilla.org/position/gh/864822). *Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!* # Quote of the Week > The compiler is grumpy for you so you don’t have to be — Élisabeth Henry @RustFest Zürich Thanks to [llogiq](https://users.rust-lang.org/t/twir-quote-of-the-week/328/454) for the suggestion. [Submit your quotes for next week][submit]! [submit]: http://users.rust-lang.org/t/twir-quote-of-the-week/328 *This Week in Rust is edited by: [nasa42](https://github.com/nasa42) and [llogiq](https://github.com/llogiq).*