Skip to content

Commit e426f7b

Browse files
committed
re-adds draft for 345
Signed-off-by: Nell Shamrell <[email protected]>
1 parent f5b1855 commit e426f7b

File tree

1 file changed

+180
-0
lines changed

1 file changed

+180
-0
lines changed

draft/2020-06-30-this-week-in-rust.md

Lines changed: 180 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,180 @@
1+
Title: This Week in Rust 345
2+
Number: 345
3+
Date: 2020-06-30
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+
Check out [this week's *This Week in Rust Podcast*](https://rustacean-station.org/episode/019-twir-344/)
16+
17+
# Updates from Rust Community
18+
19+
## News & Blog Posts
20+
21+
# Crate of the Week
22+
23+
This week's crate is [diskonaut](https://github.com/imsnif/diskonaut), a disk usage explorer.
24+
25+
Thanks to [Aram Drevekenin](https://users.rust-lang.org/t/crate-of-the-week/2704/781) for the suggestion!
26+
27+
[Submit your suggestions and votes for next week][submit_crate]!
28+
29+
[submit_crate]: https://users.rust-lang.org/t/crate-of-the-week/2704
30+
31+
# Call for Participation
32+
33+
Always wanted to contribute to open-source projects but didn't know where to start?
34+
Every week we highlight some tasks from the Rust community for you to pick and get started!
35+
36+
Some of these tasks may also have mentors available, visit the task page for more information.
37+
38+
If you are a Rust project owner and are looking for contributors, please submit tasks [here][guidelines].
39+
40+
[guidelines]: https://users.rust-lang.org/t/twir-call-for-participation/4821
41+
42+
# Updates from Rust Core
43+
44+
325 pull requests were [merged in the last week][merged]
45+
46+
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2020-06-15..2020-06-22
47+
48+
* [add `asm!()` support for hexagon](https://github.com/rust-lang/rust/pull/73214)
49+
* [enable LLVM zlib](https://github.com/rust-lang/rust/pull/72696)
50+
* [add methods to go from a nul-terminated `Vec<u8>` to a `CString`](https://github.com/rust-lang/rust/pull/73139)
51+
* [allow multiple `asm!` options groups and report an error on duplicate options](https://github.com/rust-lang/rust/pull/73227)
52+
* [diagnose use of incompatible sanitizers](https://github.com/rust-lang/rust/pull/73347)
53+
* [disallow loading crates with non-ascii identifier name](https://github.com/rust-lang/rust/pull/73305)
54+
* [export `#[inline]` fns with extern indicators](https://github.com/rust-lang/rust/pull/73034)
55+
* [fix up autoderef when reborrowing](https://github.com/rust-lang/rust/pull/72280)
56+
* [further tweak lifetime errors involving `dyn Trait` and `impl Trait` in return position](https://github.com/rust-lang/rust/pull/72804)
57+
* [implement crate-level-only lints checking.](https://github.com/rust-lang/rust/pull/73300)
58+
* [implement new gdb/lldb pretty-printers](https://github.com/rust-lang/rust/pull/72357)
59+
* [improve diagnostics for `let x += 1`](https://github.com/rust-lang/rust/pull/71976)
60+
* [make `need_type_info_err` more conservative](https://github.com/rust-lang/rust/pull/73027)
61+
* [make all uses of ty::Error delay a span bug](https://github.com/rust-lang/rust/pull/70551)
62+
* [make new type param suggestion more targetted](https://github.com/rust-lang/rust/pull/73320)
63+
* [make novel structural match violations not a `bug`](https://github.com/rust-lang/rust/pull/73446)
64+
* [only display other method receiver candidates if they actually apply](https://github.com/rust-lang/rust/pull/73382)
65+
* [prefer accessible paths in 'use' suggestions](https://github.com/rust-lang/rust/pull/72623)
66+
* [prevent attacker from manipulating FPU tag word used in SGX enclave](https://github.com/rust-lang/rust/pull/73471)
67+
* [projection bound validation](https://github.com/rust-lang/rust/pull/72788)
68+
* [report error when casting an C-like enum implementing Drop](https://github.com/rust-lang/rust/pull/72331)
69+
* [specialization is unsound](https://github.com/rust-lang/rust/pull/71420)
70+
* [use min_specialization in the remaining rustc crates](https://github.com/rust-lang/rust/pull/72707)
71+
* [add specialization of `ToString for char`](https://github.com/rust-lang/rust/pull/73465)
72+
* [suggest `?Sized` when applicable for ADTs](https://github.com/rust-lang/rust/pull/73261)
73+
* [support sanitizers on aarch64-unknown-linux-gnu](https://github.com/rust-lang/rust/pull/73058)
74+
* [test that bounds checks are elided when slice len is checked up-front](https://github.com/rust-lang/rust/pull/73362)
75+
* [try to suggest dereferences on trait selection failed](https://github.com/rust-lang/rust/pull/72456)
76+
* [use track caller for bug! macro](https://github.com/rust-lang/rust/pull/73373)
77+
* [forbid mutable references in all constant contexts except for const-fns](https://github.com/rust-lang/rust/pull/72934)
78+
* [linker: MSVC supports linking static libraries as a whole archive](https://github.com/rust-lang/rust/pull/72785)
79+
* [linker: never pass `-no-pie` to non-gnu linkers](https://github.com/rust-lang/rust/pull/73384)
80+
* [lint: normalize projections using opaque types](https://github.com/rust-lang/rust/pull/73287)
81+
* [add a lint to catch clashing `extern` fn declarations.](https://github.com/rust-lang/rust/pull/70946)
82+
* [memory access sanity checks: abort instead of panic](https://github.com/rust-lang/rust/pull/73054)
83+
* [pretty/mir: const value enums with no variants](https://github.com/rust-lang/rust/pull/73442)
84+
* [store `ObligationCause` on the heap](https://github.com/rust-lang/rust/pull/72962)
85+
* [chalk: add closures](https://github.com/rust-lang/chalk/pull/519)
86+
* [chalk: ignore auto traits order](https://github.com/rust-lang/chalk/pull/531)
87+
* [fix asinh of negative values](https://github.com/rust-lang/rust/pull/72486)
88+
* [stabilize Option::zip](https://github.com/rust-lang/rust/pull/72938)
89+
* [stabilize vec::Drain::as_slice](https://github.com/rust-lang/rust/pull/72584)
90+
* [use `Ipv4Addr::from<[u8; 4]>` when possible](https://github.com/rust-lang/rust/pull/73389)
91+
* [core/time: Add Duration methods for zero](https://github.com/rust-lang/rust/pull/72790)
92+
* [deprecate wrapping_offset_from](https://github.com/rust-lang/rust/pull/73580)
93+
* [impl PartialEq<Vec<B>> for &[A], &mut [A]](https://github.com/rust-lang/rust/pull/71660)
94+
* [hashbrown: avoid creating small tables with a capacity of 1](https://github.com/rust-lang/hashbrown/pull/162)
95+
* [stdarch: add AVX 512f gather, scatter and compare intrinsics](https://github.com/rust-lang/stdarch/pull/866)
96+
* [cargo: adding environment variable CARGO_PKG_LICENSE](https://github.com/rust-lang/cargo/pull/8325)
97+
* [cargo: cut down on data fetch from git dependencies](https://github.com/rust-lang/cargo/pull/8363)
98+
* [cargo: fix doctests not running with --target=HOST](https://github.com/rust-lang/cargo/pull/8358)
99+
* [cargo: fix order-dependent feature resolution.](https://github.com/rust-lang/cargo/pull/8395)
100+
* [cargo: fix overzealous `clean -p` for reserved names](https://github.com/rust-lang/cargo/pull/8398)
101+
* [cargo: support linker with -Zdoctest-xcompile.](https://github.com/rust-lang/cargo/pull/8359)
102+
* [rustfmt: avoid using Symbol::intern](https://github.com/rust-lang/rustfmt/pull/4268)
103+
* [rustfmt: ensure idempotency on empty match blocks](https://github.com/rust-lang/rustfmt/pull/4271)
104+
105+
106+
## Rust Compiler Performance Triage
107+
108+
* [2020-06-23](https://github.com/rust-lang/rustc-perf/blob/master/triage/2020.md#2020-06-23). Lots of improvements this week, and no regressions, which is good. But we regularly see significant performance effects on rollups, which is a concern.
109+
110+
## Approved RFCs
111+
112+
Changes to Rust follow the Rust [RFC (request for comments) process](https://github.com/rust-lang/rfcs#rust-rfcs). These
113+
are the RFCs that were approved for implementation this week:
114+
115+
*No RFCs were approved this week.*
116+
117+
## Final Comment Period
118+
119+
Every week [the team](https://www.rust-lang.org/team.html) announces the
120+
'final comment period' for RFCs and key PRs which are reaching a
121+
decision. Express your opinions now.
122+
123+
### [RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period)
124+
125+
*No RFCs are currently in the final comment period.*
126+
127+
### [Tracking Issues & PRs](https://github.com/rust-lang/rust/labels/final-comment-period)
128+
129+
* [disposition: merge] [impl `From<char>` for String](https://github.com/rust-lang/rust/pull/73466)
130+
* [disposition: merge] [stabilize leading_trailing_ones](https://github.com/rust-lang/rust/pull/73032)
131+
* [disposition: merge] [Add `TryFrom<{int}>` for `NonZero{int}`](https://github.com/rust-lang/rust/pull/72717)
132+
* [disposition: merge] [Stabilize `#[track_caller]`](https://github.com/rust-lang/rust/pull/72445)
133+
* [disposition: merge] [add Windows system error codes that should map to `io::ErrorKind::TimedOut`](https://github.com/rust-lang/rust/pull/71756)
134+
* [disposition: merge] [Tracking issue for RFC 2344, "Allow `loop` in constant evaluation"](https://github.com/rust-lang/rust/issues/52000)
135+
* [disposition: merge] [Tracking issue for `Option::deref`, `Result::deref`, `Result::deref_ok`, and `Result::deref_err`](https://github.com/rust-lang/rust/issues/50264)
136+
137+
## New RFCs
138+
139+
* [RFC: 'C unwind' ABI](https://github.com/rust-lang/rfcs/pull/2945)
140+
141+
# Upcoming Events
142+
143+
### Online
144+
* [June 24. Wroclaw, PL - Remote - Rust Wroclaw Meetup #22](https://www.meetup.com/Rust-Wroclaw/events/271319037/)
145+
* [June 25. Edinburgh, UK - Remote - Pirrigator - Growing Tomatoes Free From Memory Errors and Race Conditions](https://www.meetup.com/rust-edi/events/271129693/)
146+
* [June 25. Berlin, DE - Remote - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/txcprrybcjbhc/)
147+
* [July 1. Johannesburg, ZA - Remote - Monthly Joburg Rust Chat!](https://www.meetup.com/Johannesburg-Rust-Meetup/events/271286846/)
148+
149+
### North America
150+
* [June 30. Dallas, TX, US - Dallas Rust - Last Tuesday](https://www.meetup.com/Dallas-Rust/events/nppvrrybcjbnc/)
151+
* [July 1. Indianapolis, IN, US - Indy Rust - Indy.rs](https://www.meetup.com/indyrs/events/dtqwprybckbcb/)
152+
153+
### Asia Pacific
154+
* [July 6. Auckland, NZ - Rust AKL](https://www.meetup.com/rust-akl/events/266876691/)
155+
156+
If you are running a Rust event please add it to the [calendar] to get
157+
it mentioned here. Please remember to add a link to the event too.
158+
Email the [Rust Community Team][community] for access.
159+
160+
[calendar]: https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com
161+
[community]: mailto:[email protected]
162+
163+
# Rust Jobs
164+
165+
166+
*Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
167+
168+
# Quote of the Week
169+
170+
> Rust's beauty lies in the countless decisions made by the development community that constantly make you feel like you can have ten cakes and eat all of them too.
171+
172+
[Jake McGinty et al on the tonari blog](https://blog.tonari.no/why-we-love-rust)
173+
174+
Thanks to [llogiq](https://users.rust-lang.org/t/twir-quote-of-the-week/328/896) for the suggestions!
175+
176+
[Please submit quotes and vote for next week!](https://users.rust-lang.org/t/twir-quote-of-the-week/328)
177+
178+
*This Week in Rust is edited by: [nellshamrell](https://github.com/nellshamrell), [llogiq](https://github.com/llogiq), and [cdmistman](https://github.com/cdmistman).*
179+
180+
<small>[Discuss on r/rust](https://www.reddit.com/r/rust/comments/hepkfq/this_week_in_rust_344/)</small>

0 commit comments

Comments
 (0)