Skip to content

Commit fc7f086

Browse files
committed
draft for 241
1 parent 3d3d7e3 commit fc7f086

File tree

1 file changed

+172
-0
lines changed

1 file changed

+172
-0
lines changed
Lines changed: 172 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,172 @@
1+
Title: This Week in Rust 241
2+
Number: 241
3+
Date: 2018-07-03
4+
Category: This Week in Rust
5+
6+
Hello and welcome to another issue of *This Week in Rust*!
7+
[Rust](http://rust-lang.org) is a systems language pursuing the trifecta: safety, concurrency, and speed.
8+
This is a weekly summary of its progress and community.
9+
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).
10+
Want to get involved? [We love contributions](https://github.com/rust-lang/rust/blob/master/CONTRIBUTING.md).
11+
12+
*This Week in Rust* is openly developed [on GitHub](https://github.com/cmr/this-week-in-rust).
13+
If you find any errors in this week's issue, [please submit a PR](https://github.com/cmr/this-week-in-rust/pulls).
14+
15+
# Updates from Rust Community
16+
17+
## News & Blog Posts
18+
19+
# Crate of the Week
20+
21+
This week's crate is [mutagen](https://github.com/llogiq/mutagen), a mutation testing framework for Rust. Thanks to llogiq for the suggestion.
22+
23+
[Submit your suggestions and votes for next week][submit_crate]!
24+
25+
[submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704
26+
27+
# Call for Participation
28+
29+
Always wanted to contribute to open-source projects but didn't know where to start?
30+
Every week we highlight some tasks from the Rust community for you to pick and get started!
31+
32+
Some of these tasks may also have mentors available, visit the task page for more information.
33+
34+
* [Get started with these beginner-friendly issues](https://www.rustaceans.org/findwork/starters).
35+
36+
If you are a Rust project owner and are looking for contributors, please submit tasks [here][guidelines].
37+
38+
[guidelines]: https://users.rust-lang.org/t/twir-call-for-participation/4821
39+
40+
# Updates from Rust Core
41+
42+
95 pull requests were [merged in the last week][merged]
43+
44+
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2018-06-18..2018-06-25
45+
46+
* [async/await](https://github.com/rust-lang/rust/pull/51580)
47+
* [rename OOM to allocation error](https://github.com/rust-lang/rust/pull/51543)
48+
* [prohibit `global_allocator` in submodules](https://github.com/rust-lang/rust/pull/51335)
49+
* [run some stuff in parallel](https://github.com/rust-lang/rust/pull/51383)
50+
* [reduce number of allocations done by NLL](https://github.com/rust-lang/rust/pull/51617)
51+
* [NLL: walk the MIR only once for the "unused mut" lint](https://github.com/rust-lang/rust/pull/51660)
52+
* [NLL diagnostics: revise `fn check_access_permissions`](https://github.com/rust-lang/rust/pull/51275)
53+
* [improve memoization and refactor NLL type check](https://github.com/rust-lang/rust/pull/51460)
54+
* [add existential type definitions](https://github.com/rust-lang/rust/pull/51414)
55+
* [make more `libsyntax` methods public](https://github.com/rust-lang/rust/pull/51664)
56+
* [add ability to apply custom derive to union types](https://github.com/rust-lang/rust/pull/50383)
57+
* [The Great Generics Generalisation: HIR Edition](https://github.com/rust-lang/rust/pull/48149)
58+
* [fix processing mod with multi-level path on Windows](https://github.com/rust-lang/rust/pull/51278)
59+
* [disable probestack when GCOV profiling is being used](https://github.com/rust-lang/rust/pull/51666)
60+
* [support future deprecation for rustc_deprecated](https://github.com/rust-lang/rust/pull/51681)
61+
* [fix an ICE when matching over const slices](https://github.com/rust-lang/rust/pull/51733)
62+
* [yet another "old borrowck" bug around match default bindings](https://github.com/rust-lang/rust/pull/51686)
63+
* [fix erroneous error note when using field after move](https://github.com/rust-lang/rust/pull/51688)
64+
* [three diagnostics upgrades](https://github.com/rust-lang/rust/pull/51750)
65+
* [various changes to existing diagnostics](https://github.com/rust-lang/rust/pull/51463)
66+
* [don't suggest incorrect syntax](https://github.com/rust-lang/rust/pull/51670)
67+
* [use fstatat64 where available](https://github.com/rust-lang/rust/pull/51785)
68+
* [specialize `StepBy<Range(Inclusive)>`](https://github.com/rust-lang/rust/pull/51601)
69+
* [`impl Hash for !`](https://github.com/rust-lang/rust/pull/51404)
70+
* [stabilize std::path::Path::ancestors](https://github.com/rust-lang/rust/pull/50894)
71+
* [replace tempdir by tempfile](https://github.com/rust-lang/rust/pull/50698)
72+
* [rustdoc: greatly improve tables display](https://github.com/rust-lang/rust/pull/51482)
73+
* [rustbuild: use quiet tests by default](https://github.com/rust-lang/rust/pull/51367)
74+
* [ship LLVM tools with the toolchain](https://github.com/rust-lang/rust/pull/50336)
75+
76+
## Approved RFCs
77+
78+
Changes to Rust follow the Rust [RFC (request for comments)
79+
process](https://github.com/rust-lang/rfcs#rust-rfcs). These
80+
are the RFCs that were approved for implementation this week:
81+
82+
*No RFCs were approved this week.*
83+
84+
## Final Comment Period
85+
86+
Every week [the team](https://www.rust-lang.org/team.html) announces the
87+
'final comment period' for RFCs and key PRs which are reaching a
88+
decision. Express your opinions now.
89+
90+
### [RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period)
91+
92+
* [disposition: merge] [Allow panicking in constants](https://github.com/rust-lang/rfcs/pull/2345).
93+
* [disposition: merge] [Allow `loop` in constant evaluation](https://github.com/rust-lang/rfcs/pull/2344).
94+
* [disposition: merge] [Introduce `#[do_not_recommend]` to control errors for trait impls](https://github.com/rust-lang/rfcs/pull/2397).
95+
* [disposition: merge] [Tuple struct construction with `Self(v1, v2, ..)`](https://github.com/rust-lang/rfcs/pull/2302).
96+
* [disposition: merge] [Update RFC 0430 to allow underscores between numbers in CamelCase names](https://github.com/rust-lang/rfcs/pull/2478).
97+
* [disposition: merge] [Add `Option::replace` to the core library](https://github.com/rust-lang/rfcs/pull/2296).
98+
* [disposition: close] [Reserve `delegate` as a keyword in edition 2018](https://github.com/rust-lang/rfcs/pull/2429).
99+
* [disposition: close] [Reserve `f(a = b)` in Rust 2018](https://github.com/rust-lang/rfcs/pull/2443).
100+
101+
### [Tracking Issues & PRs](https://github.com/rust-lang/rust/labels/final-comment-period)
102+
103+
* [disposition: merge] [Tracking issue for "macro naming and modularisation" (RFC #1561)](https://github.com/rust-lang/rust/issues/35896).
104+
* [disposition: merge] [Tracking issue for `ToOwned::clone_into` (`toowned_clone_into`)](https://github.com/rust-lang/rust/issues/41263).
105+
* [disposition: merge] [`extern type` cannot support `size_of_val` and `align_of_val`](https://github.com/rust-lang/rust/issues/49708).
106+
* [disposition: merge] [Tracking issue for the to_bytes and from_bytes methods of integers](https://github.com/rust-lang/rust/issues/49792).
107+
* [disposition: merge] [Implement `iter::{Sum<U>, Product<U>}` for `Option<T>`](https://github.com/rust-lang/rust/pull/50884).
108+
* [disposition: merge] [Implement `PartialEq` between `&str` and `OsString`](https://github.com/rust-lang/rust/pull/51178).
109+
* [disposition: merge] [Remove quote_*! macros](https://github.com/rust-lang/rust/pull/51285).
110+
* [disposition: close] [Can't overload indexing for arrays](https://github.com/rust-lang/rust/issues/49786).
111+
112+
## New RFCs
113+
114+
* [Add new channels for long term support (LTS) releases](https://github.com/rust-lang/rfcs/pull/2483).
115+
* [Stabilize the alloc crate](https://github.com/rust-lang/rfcs/pull/2480).
116+
* [Conversions: `FromLossy` and `TryFromLossy` traits](https://github.com/rust-lang/rfcs/pull/2484).
117+
118+
# Upcoming Events
119+
120+
### Online
121+
122+
* [Jul 3. Rust Community Content Subteam Meeting at #rust-content on irc.mozilla.org](irc://irc.mozilla.org/rust-content).
123+
* [Jul 4. Rust Community Team Meeting at #rust-community on irc.mozilla.org](irc://irc.mozilla.org/rust-community).
124+
* [Jul 4. Rust Events Team Meeting](https://t.me/joinchat/EkKINhHCgZ9llzvPidOssA).
125+
* [Jul 11. Rust Community Team Meeting at #rust-community on irc.mozilla.org](irc://irc.mozilla.org/rust-community).
126+
127+
### Africa
128+
129+
* [Jul 3. Johannesburg, ZA - Monthly Meetup of the Johannesburg Rustaceans](https://www.meetup.com/Johannesburg-Rust-Meetup/events/cpblrnyxkbfb/).
130+
131+
### Europe
132+
133+
* [Jul 4. Dresden, DE - Mozilla Community Dresden - Rust Meetup](https://www.meetup.com/Mozilla-Community-Dresden/events/252020329/).
134+
* [Jul 6. Darmstadt, DE - Rhein-Main Rust Meetup](https://www.meetup.com/Rust-Rhein-Main/events/251928672).
135+
* [Jul 11. Zurich, CH - Actix.rs - July Meetup](https://www.meetup.com/Rust-Zurich/events/250386292/).
136+
* [Jul 11. Berlin, DE - OpenTechSchool - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/xkdlvpyxkbpb/).
137+
138+
### North America
139+
140+
* [Jul 1. Mountain View, US - Open Table / Icebreaker: what projects are you working on](https://www.meetup.com/Rust-Dev-in-Mountain-View/events/glnfcpyxkbcb/).
141+
* [Jul 4. Atlanta, US - Grab a beer with fellow Rustaceans](https://www.meetup.com/Rust-ATL/events/rhvgrmyxkbgb/).
142+
* [Jul 4. Indianapolis, US - Indy.rs](https://www.meetup.com/indyrs/events/mffbtpyxkbgb/).
143+
* [Jul 8. Mountain View, US - Open Table / Icebreaker: what projects are you working on](https://www.meetup.com/Rust-Dev-in-Mountain-View/events/glnfcpyxkblb/).
144+
* [Jul 9. Seattle, US - Monthly Rust Meetup](https://www.meetup.com/Seattle-Rust-Meetup/events/pkggvpyxkbmb/).
145+
* [Jul 11. Vancouver, CA - Rust Study/Hack/Hang-out night](https://www.meetup.com/Vancouver-Rust/events/dqldspyxjbkc/).
146+
* [Jul 12. Columbus, US - Columbus Rust Society - Monthly Meeting](https://www.meetup.com/columbus-rs/events/dbcfrpyxkbqb/).
147+
* **[Aug 17. Portland, US - RustConf 2018](http://rustconf.com/).** Registration is now open.
148+
149+
If you are running a Rust event please add it to the [calendar] to get
150+
it mentioned here. Email the [Rust Community Team][community] for access.
151+
152+
[calendar]: https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com
153+
[community]: mailto:[email protected]
154+
155+
# Rust Jobs
156+
157+
* [Senior Software Developer at Nymi, Toronto, CA](https://nymi.com/careers/sr-software).
158+
* [Senior Rust Engineer at Ticketmaster, Arizona, US](https://www.reddit.com/r/rust/comments/8s0tk1/9095_remote_senior_rust_engineer_ticketmaster/).
159+
160+
*Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
161+
162+
# Quote of the Week
163+
164+
> I’m hesitating in cc’ing [the crate author] because I’d rather this be an educational conversation, and not a unsafety witchhunt.
165+
166+
– vitalyd on [rust-users](https://users.rust-lang.org/t/how-not-to-use-unsafe-code/18170/13)
167+
168+
[Please submit your quotes for next week][submit]!
169+
170+
[submit]: http://users.rust-lang.org/t/twir-quote-of-the-week/328
171+
172+
*This Week in Rust is edited by: [nasa42](https://github.com/nasa42) and [llogiq](https://github.com/llogiq).*

0 commit comments

Comments
 (0)