Skip to content

Commit ab6e996

Browse files
committed
final draft 244
1 parent 75d1faf commit ab6e996

File tree

1 file changed

+54
-59
lines changed

1 file changed

+54
-59
lines changed

drafts/2018-07-24-this-week-in-rust.md

Lines changed: 54 additions & 59 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,25 @@ If you find any errors in this week's issue, [please submit a PR](https://github
1616

1717
## News & Blog Posts
1818

19+
* 🎈🎉 [Announcing Rust 1.27.2](https://blog.rust-lang.org/2018/07/20/Rust-1.27.2.html). 🎉🎈
20+
* [Futures 0.3.0-alpha.1 is released with support for async/await](https://rust-lang-nursery.github.io/futures-rs/blog/2018/07/19/futures-0.3.0-alpha.1.html).
21+
* [Game studio Ready At Dawn switching to Rust for all new development](https://twitter.com/AndreaPessino/status/1021532074153394176).
22+
* [Multi-line search is coming to ripgrep](https://twitter.com/burntsushi5/status/1018995044861272064).
23+
* [Wayland-rs 0.21: Pure rust implementation](https://smithay.github.io/wayland-rs-v-0-21.html).
24+
* [A static web app in Rust](https://bluejekyll.github.io/blog/rust/2018/07/22/static-web-app-rust.html).
25+
* [Writing a GPU-accelerated path tracer in Rust - part 3](https://bheisler.github.io/post/writing-gpu-accelerated-path-tracer-part-3/).
26+
* [Creating CLI apps in Rust is super easy](https://blog.kuviman.com/2018/07/20/glitchcat.html).
27+
* [Deploying Rust with Docker and Kubernetes](https://www.fpcomplete.com/blog/2018/07/deploying-rust-with-docker-and-kubernetes).
28+
* [Natively run OCaml from Rust](https://blog.s-m.ac/ocaml-rust-ffi/).
29+
* [Thoughts on compile-time function evaluation and type systems](https://www.ralfj.de/blog/2018/07/19/const.html).
30+
* [On impl blocks, injection and surjection in Rust](https://phaazon.net/blog/on-rust-impl-block).
31+
* [Rebooting the network services working group](https://internals.rust-lang.org/t/rebooting-the-network-services-working-group/8036).
32+
* [Hello Content-o-Tron](http://blog.community.rs/content-team/2018/07/16/hello-content-o-tron.html). Editorial assistance and technical reviews of draft blog posts.
33+
* [2018 Edition end of week post (2018-07-20)](https://internals.rust-lang.org/t/2018-edition-end-of-week-post-2018-07-20/8019).
34+
1935
# Crate of the Week
2036

21-
This week's crate is [paste](https://github.com/jkcclemens/paste), a self-hosted pastebin made of a lot of Rust and a little Ruby. Thanks to [Kyle Clemens](https://users.rust-lang.org/u/jkcclemens) for both crate and suggestion!
37+
This week's crate is [rav1e](https://github.com/xiph/rav1e), the fastest and safest AV1 encoder from Xiph.Org Foundation. Thanks to [nasa42](https://users.rust-lang.org/t/crate-of-the-week/2704/419) for suggestion!
2238

2339
[Submit your suggestions and votes for next week][submit_crate]!
2440

@@ -31,8 +47,8 @@ Every week we highlight some tasks from the Rust community for you to pick and g
3147

3248
Some of these tasks may also have mentors available, visit the task page for more information.
3349

34-
* [Help port musl's libm to Rust, for math support in WASM/core/no_std code](https://mobile.twitter.com/japaricious/status/1017934106318032901).
35-
* [image-png: Unbounded memory consumption on malformed inputs](https://github.com/PistonDevelopers/image-png/issues/80).
50+
* [How to help test the 2018 edition](https://www.ncameron.org/blog/how-to-help-test-the-2018-edition/).
51+
* [bitwarden_rs: Looking for wannabe rustaceans, that'd like to get their feet wet](https://www.reddit.com/r/rust/comments/90xh79/looking_for_wannabe_rustaceans_thatd_like_to_get/).
3652
* [Get started with these beginner-friendly issues](https://www.rustaceans.org/findwork/starters).
3753

3854
If you are a Rust project owner and are looking for contributors, please submit tasks [here][guidelines].
@@ -45,41 +61,30 @@ If you are a Rust project owner and are looking for contributors, please submit
4561

4662
[merged]: https://github.com/search?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2018-07-09..2018-07-16
4763

48-
* [add the `amdgpu-kernel` ABI](https://github.com/rust-lang/rust/pull/52032)
49-
* [infinite loop detection for const evaluation](https://github.com/rust-lang/rust/pull/51702)
50-
* [chalk lowering rule: WellFormed-TraitRef](https://github.com/rust-lang/rust/pull/50250)
51-
* [fix ICE when using a pointer cast as array size](https://github.com/rust-lang/rust/pull/52314)
52-
* [implement `#[alloc_error_handler]`](https://github.com/rust-lang/rust/pull/52191)
53-
* [improve error message shown for unsafe operations](https://github.com/rust-lang/rust/pull/52207)
54-
* [remove most of `PartialEq` and `Hash` impls from AST and HIR structures](https://github.com/rust-lang/rust/pull/51829)
55-
* [deny bare trait objects in the rest of rust](https://github.com/rust-lang/rust/pull/52302)
56-
* [reach the body of functions returning `impl Trait` but don't treat it as public](https://github.com/rust-lang/rust/pull/52348)
57-
* [NLL: suggest `ref mut` and `&mut self`](https://github.com/rust-lang/rust/pull/52242)
58-
* [resolve: functions introducing procedural macros reserve a slot in the macro namespace as well](https://github.com/rust-lang/rust/pull/52383)
59-
* [proc_macro: fix crate root detection](https://github.com/rust-lang/rust/pull/52328)
60-
* [correct suggestion for println](https://github.com/rust-lang/rust/pull/51614)
61-
* [do not attempt to recompile codegen backend(s) with --keep-stage](https://github.com/rust-lang/rust/pull/52360)
62-
* [openbsd fix](https://github.com/rust-lang/libc/pull/1040)
63-
* [rustc: stabilize the `proc_macro` feature](https://github.com/rust-lang/rust/pull/52081)
64-
* [ensure StorageDead is created even if variable initialization fails](https://github.com/rust-lang/rust/pull/52046)
65-
* [rustc_codegen_llvm: replace the first argument early in FnType::new_vtable](https://github.com/rust-lang/rust/pull/52089)
66-
* [change RangeInclusive to a three-field struct](https://github.com/rust-lang/rust/pull/51622)
67-
* [add ExactChunks::remainder and ExactChunks::into_remainder](https://github.com/rust-lang/rust/pull/51339)
68-
* [implement `Option::replace` in the core library](https://github.com/rust-lang/rust/pull/52003)
69-
* [add `#[repr(transparent)]` to `Atomic*` types](https://github.com/rust-lang/rust/pull/52149)
70-
* [remove sync::Once::call_once 'static bound](https://github.com/rust-lang/rust/pull/52239)
71-
* [improve Debug display for a few types](https://github.com/rust-lang/cargo/pull/5712)
72-
* [cargo: most sorts can be unstable](https://github.com/rust-lang/cargo/pull/5732)
73-
* [implement default-run option to set default binary for cargo run](https://github.com/rust-lang/cargo/pull/5710)
74-
* [rustdoc: don't panic when the cross-re-export handler sees a proc-macro](https://github.com/rust-lang/rust/pull/52361)
64+
* [Cargo: Import `cargo fix` directly in to Cargo](https://github.com/rust-lang/cargo/pull/5723).
65+
* [Implement existential types](https://github.com/rust-lang/rust/pull/52024).
66+
* [Overhaul exit codes for rustc and rustdoc](https://github.com/rust-lang/rust/pull/52197).
67+
* [rustc: Stabilize `#[wasm_import_module]` as `#[link(...)]`](https://github.com/rust-lang/rust/pull/52445).
68+
* [Stabilize lint handling in rustdoc](https://github.com/rust-lang/rust/pull/52354).
69+
* [Deprecation of `str::slice_unchecked(_mut)`](https://github.com/rust-lang/rust/pull/51807).
70+
* [Lint `async` identifiers in 2018 preparation mode](https://github.com/rust-lang/rust/pull/52375).
71+
* [rustc: Enable `use_extern_macros` in 2018 edition](https://github.com/rust-lang/rust/pull/52472).
72+
* [Implement statfs for dragonfly, freebsd and openbsd](https://github.com/rust-lang/libc/pull/1039).
73+
* [Speed up `SparseBitMatrix` use in `RegionValues`](https://github.com/rust-lang/rust/pull/52250).
74+
* [mem::swap the obvious way for types smaller than the SIMD optimization's block size](https://github.com/rust-lang/rust/pull/52051).
75+
* [Cargo: Don't warn about ignored files in cargo-fix](https://github.com/rust-lang/cargo/pull/5770).
76+
* [rustc: Work around an upstream wasm ThinLTO bug](https://github.com/rust-lang/rust/pull/52506).
77+
* [Allow clippy to be installed with make install](https://github.com/rust-lang/rust/pull/52464).
78+
* [regex: expose lower level search APIs](https://github.com/rust-lang/regex/pull/493).
79+
* [Implement rfc 1789: Conversions from `&mut T` to `&Cell<T>`](https://github.com/rust-lang/rust/pull/50494).
7580

7681
## Approved RFCs
7782

7883
Changes to Rust follow the Rust [RFC (request for comments)
7984
process](https://github.com/rust-lang/rfcs#rust-rfcs). These
8085
are the RFCs that were approved for implementation this week:
8186

82-
*No RFCs were approved this week.*
87+
* [RFC 2289: Associated type bounds of form `MyTrait<AssociatedType: Bounds>`](https://github.com/rust-lang/rfcs/pull/2289).
8388

8489
## Final Comment Period
8590

@@ -89,62 +94,52 @@ decision. Express your opinions now.
8994

9095
### [RFCs](https://github.com/rust-lang/rfcs/labels/final-comment-period)
9196

92-
* [disposition: merge] [Associated type bounds of form `MyTrait<AssociatedType: Bounds>`](https://github.com/rust-lang/rfcs/pull/2289).
97+
*No RFCs are currently in final comment period.*
9398

9499
### [Tracking Issues & PRs](https://github.com/rust-lang/rust/labels/final-comment-period)
95100

96-
* [disposition: merge] [resolve: Modularize crate-local `#[macro_export] macro_rules`](https://github.com/rust-lang/rust/pull/52234).
97-
* [disposition: merge] [Change behavior of `?` as a macro separator and Kleene op in 2018 edition](https://github.com/rust-lang/rust/issues/51934).
98-
* [disposition: merge] [Deprecation of `str::slice_unchecked(_mut)`](https://github.com/rust-lang/rust/pull/51807).
101+
* [disposition: merge] [Tracking issue: RFC 2103 - attributes for tools](https://github.com/rust-lang/rust/issues/44690).
99102
* [disposition: merge] [Tracking issue for `ToOwned::clone_into` (`toowned_clone_into`)](https://github.com/rust-lang/rust/issues/41263).
100-
* [disposition: close] [NLL lets borrowck observe drop order for `let (a, b);`](https://github.com/rust-lang/rust/issues/51036).
101-
* [disposition: close] [adds Default impl for Instant](https://github.com/rust-lang/rust/pull/50800).
103+
* [disposition: merge] [Modularize crate-local `#[macro_export] macro_rules`](https://github.com/rust-lang/rust/pull/52234).
102104

103105
## New RFCs
104106

105-
* [if- and while-let-chains, take 2](https://github.com/rust-lang/rfcs/pull/2497).
106-
* [Pattern API](https://github.com/rust-lang/rfcs/pull/2500).
107-
* [Hygiene opt-out (escaping) for declarative macros 2.0](https://github.com/rust-lang/rfcs/pull/2498).
107+
* [Fix the Error trait](https://github.com/rust-lang/rfcs/pull/2504).
108+
* [Make AcqRel universally usable as ordering mode](https://github.com/rust-lang/rfcs/pull/2503).
108109

109110
# Upcoming Events
110111

111112
### Online
112113

113-
* [Jul 25. Rust Community Team Meeting in Discord](https://discordapp.com/channels/442252698964721669/443773747350994945).
114114
* [Jul 31. Rust Community Content Subteam Meeting at #rust-content on irc.mozilla.org](irc://irc.mozilla.org/rust-content).
115115
* [Aug 1. Rust Events Team Meeting in Telegram](https://t.me/joinchat/EkKINhHCgZ9llzvPidOssA).
116116
* [Aug 1. Rust Community Team Meeting in Discord](https://discordapp.com/channels/442252698964721669/443773747350994945).
117+
* [Aug 8. Rust Community Team Meeting in Discord](https://discordapp.com/channels/442252698964721669/443773747350994945).
117118

118-
### Asia-Pacific
119+
### Africa
119120

120-
* [Jul 23. Sydney, AU - Rust Sydney Meetup 14](https://www.meetup.com/Rust-Sydney/events/251749825/).
121+
* [Jul 7. Johannesburg, ZA - Monthly Meetup of the Johannesburg Rustaceans](https://www.meetup.com/Johannesburg-Rust-Meetup/events/cpblrnyxlbkb/).
121122

122123
### Europe
123124

124-
* [Jul 20. Barcelona, ES - BcnRust 1st meetup with Ashley Williams & Steve Klabnik](https://www.meetup.com/BcnRust/events/251237895/).
125-
* [Jul 24. Rome, IT - Rust learning and hacking evening #10](https://www.meetup.com/Rust-Roma/events/252627092/).
126-
* [Jul 25. Wrocław, PL - Rust Wroclaw Meetup #3](https://www.meetup.com/Rust-Wroclaw/events/252190812/).
127-
* [Jul 25. Berlin, DE - OpenTechSchool - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/xkdlvpyxkbhc/).
128-
* [Jul 25. Milan, IT - Rust Language Milano - Rust Exercises](https://www.meetup.com/rust-language-milano/events/252893336/).
129125
* [Aug 1. Cologne, DE - Rust Cologne](https://www.meetup.com/RustCologne/events/252432033).
126+
* [Aug 8. Berlin, DE - Binding to Rust from everything](https://www.meetup.com/Rust-Berlin/events/252872742/).
127+
* [Aug 8. Berlin, DE - OpenTechSchool - Rust Hack and Learn](https://www.meetup.com/opentechschool-berlin/events/xkdlvpyxlblb/).
130128

131129
### North America
132130

133-
* [Jul 22. Mountain View, US - Open Table / Icebreaker: what projects are you working on](https://www.meetup.com/Rust-Dev-in-Mountain-View/events/glnfcpyxkbdc/).
134-
* [Jun 23. Durham, US - Triangle Rustaceans - Project Night & Lightning Talks](https://www.meetup.com/triangle-rustaceans/events/mfglwpyxkbfc/).
135-
* [Jul 24. Denver, US - Rust Boulder/Denver - Rust Denver July Meetup](https://www.meetup.com/Rust-Boulder-Denver/events/252275279/).
136-
* [Jul 25. Chicago, US - Rust Meetup July 2018](https://www.meetup.com/Chicago-Rust-Meetup/events/251961097/).
137-
* [Jul 25. New York, NY US - Rust NYC Meetup](https://www.meetup.com/Rust-NYC/events/252181812/)
138-
* [Jul 25. Vancouver, CA - Rust Study/Hack/Hang-out night](https://www.meetup.com/Vancouver-Rust/events/dqldspyxkbhc/).
139131
* [Jul 29. Mountain View, US - Open Table / Icebreaker: what projects are you working on](https://www.meetup.com/Rust-Dev-in-Mountain-View/events/glnfcpyxkbmc/).
140132
* [Jul 31. Dallas, US - Last Tuesday Meetup](https://www.meetup.com/Dallas-Rust/events/zfgwzmyxkbpc/).
141133
* [Aug 1. Indianapolis, US - Indy.rs](https://www.meetup.com/indyrs/events/mffbtpyxlbcb/).
142134
* [Aug 1. Atlanta, US - Grab a beer with fellow Rustaceans](https://www.meetup.com/Rust-ATL/events/rhvgrmyxlbcb/).
135+
* [Aug 5. Mountain View, US - Open Table / Icebreaker: what projects are you working on](https://www.meetup.com/Rust-Dev-in-Mountain-View/events/glnfcpyxlbhb/).
136+
* [Aug 8. Vancouver, CA - Rust Study/Hack/Hang-out night](https://www.meetup.com/Vancouver-Rust/events/dqldspyxlblb/).
137+
* [Aug 9. Arlington, US - Rust DC - Mid-month Rustful](https://www.meetup.com/RustDC/events/252742624).
138+
* [Aug 9. Columbus, US - Columbus Rust Society - Monthly Meeting](https://www.meetup.com/columbus-rs/events/dbcfrpyxlbmb/).
143139
* **[Aug 17. Portland, US - RustConf 2018](http://rustconf.com/).**
144140

145141
### South America
146142

147-
* [Jul 21. São Paulo, BR - Rust at The Developers Conference - TDC2018](http://www.thedevelopersconference.com.br/tdc/2018/saopaulo/trilha-rust).
148143
* [Jul 28. Florianópolis, BR - 2º Encontro Rust Floripa](https://www.meetup.com/rustfloripa/events/xvglrpyxkbkb/).
149144

150145
If you are running a Rust event please add it to the [calendar] to get
@@ -155,17 +150,17 @@ it mentioned here. Email the [Rust Community Team][community] for access.
155150

156151
# Rust Jobs
157152

158-
* [Rust Software Engineer at IOHK (Remote work available)](https://iohk.recruiterbox.com/jobs/fk0177c?source=linkedin).
153+
* [Rust Engineer at Commure, Inc. (San Francisco, Boston, Montreal)](https://news.ycombinator.com/item?id=17442861).
159154

160155
*Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
161156

162157
# Quote of the Week
163158

164-
> References are not pointers, but temporary locks on data
159+
> I’ve just realized that “guarantees memory safety in the presence of bugs” is a nice way to describe Rust to C/C++ folks
165160
166-
[Kornel](https://users.rust-lang.org/u/kornel) [on rust-users](https://users.rust-lang.org/t/cannot-move-out-of-borrowed-content-take-2/18700/7).
161+
[matklad on Rust Internals](https://internals.rust-lang.org/t/size-hint-correctness-reproducibility-and-documentation/8058/4).
167162

168-
Thanks to [Squirrel](https://users.rust-lang.org/u/gilescope) for the suggestion!
163+
Thanks to [TomP](https://users.rust-lang.org/t/twir-quote-of-the-week/328/545) for the suggestion!
169164

170165
[Please submit your quotes for next week](http://users.rust-lang.org/t/twir-quote-of-the-week/328)!
171166

0 commit comments

Comments
 (0)