Skip to content

Commit d4f99ff

Browse files
committed
Merge pull request #112 from webstream-io/release-next
TWiR Release 95 (7 September 2015).
2 parents cd5dd37 + dd6ed7e commit d4f99ff

File tree

1 file changed

+126
-0
lines changed

1 file changed

+126
-0
lines changed
Lines changed: 126 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
Title: This Week in Rust 95
2+
Number: 95
3+
Date: 2015-09-07
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:
8+
safety, concurrency, and speed. This is a weekly summary of its progress and
9+
community. Want something mentioned? Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) or [send us an
10+
email](mailto:[email protected]?subject=This%20Week%20in%20Rust%20Suggestion)!
11+
Want to get involved? [We love
12+
contributions](https://github.com/rust-lang/rust/wiki/Note-guide-for-new-contributors).
13+
14+
*This Week in Rust* is openly developed [on GitHub](https://github.com/cmr/this-week-in-rust).
15+
If you find any errors in this week's issue, [please submit a PR](https://github.com/cmr/this-week-in-rust/pulls).
16+
17+
This week's edition was edited by: [nasa42](https://github.com/nasa42) and [llogiq](https://github.com/llogiq).
18+
19+
# From the Blogosphere
20+
21+
* [Designing a GC in Rust](https://manishearth.github.io/blog/2015/09/01/designing-a-gc-in-rust/).
22+
* [Rusty Radio: Episode 3](http://rustyrad.io/podcast/3/). Who Develops the Developer Tools? Featuring Phil Dawes (Racer), Nathan Sobo (Atom), and Christian Hergert (Builder).
23+
* [Combine 1.0.0 and a simple INI parser](https://marwes.github.io/2015/08/28/combine-1.0.0.html).
24+
* [Boilerplate Beginning - Piccolo Part 1](https://polyfractal.com/post/boilerplate-beginning-piccolo-part-1/). Writing a key-value store in Rust.
25+
* [Clippy vs. Rust](https://llogiq.github.io/2015/09/06/clippy.html). Running Clippy on rustc and stdlib.
26+
* [`rust-gnome` is now `Gtk-rs`](http://gtk-rs.org/blog/2015/09/06/the-name-is-gtk-rs.html).
27+
28+
# New Releases & Project Updates
29+
30+
* [swiboe](https://github.com/swiboe/swiboe). The text editor for the next 25 years.
31+
* [cargo-clippy](https://github.com/arcnmx/cargo-clippy) - runs clippy on the current project.
32+
* [ring](https://github.com/briansmith/ring). Simplified libcrypto (from BoringSSL) for Rust, C/C++, etc.
33+
* [Ideone](https://ideone.com) added support for Rust.
34+
* [Pipeline](https://github.com/johannhof/pipeline.rs). A macro collection to pipe your functions calls, like in F# or Elixir.
35+
36+
37+
# What's cooking on nightly?
38+
39+
114 pull requests were [merged in the last week][merged].
40+
41+
[merged]: https://github.com/issues?q=is%3Apr+org%3Arust-lang+is%3Amerged+merged%3A2015-08-31..2015-09-07
42+
43+
# New Contributors
44+
45+
* Aleksey Kladov
46+
* AlexDenisov
47+
* benshu
48+
* christopherdumas
49+
* Hunan Rostomyan
50+
* Jack Wilson
51+
* John Thomas
52+
* Jørn Lode
53+
* Viacheslav Chimishuk
54+
* Xiao Chuan Yu
55+
56+
# Approved RFCs
57+
58+
Changes to Rust follow the Rust [RFC (request for comments)
59+
process](https://github.com/rust-lang/rfcs#rust-rfcs). These
60+
are the RFCs that were approved for implementation this week:
61+
62+
* [RFC 953: overloaded assignment operations `a += b`](https://github.com/rust-lang/rfcs/pull/953).
63+
* [RFC 1135: Implement raw fat pointer comparisons](https://github.com/rust-lang/rfcs/pull/1135).
64+
* [RFC 1192: Allow a `x...y` expression to create an inclusive range](https://github.com/rust-lang/rfcs/pull/1192).
65+
* [RFC 1229: Turn statically known erroneous code into a warning and continue normal code-generation](https://github.com/rust-lang/rfcs/pull/1229).
66+
67+
# Final Comment Period
68+
69+
Every week [the team](https://rust-lang.org/team.html) announces the
70+
'final comment period' for RFCs and key PRs which are reaching a
71+
decision. Express your opinions now. [This week's FCPs][fcp] are:
72+
73+
[fcp]: https://github.com/issues?utf8=%E2%9C%93&q=is%3Apr+org%3Arust-lang+label%3Afinal-comment-period+is%3Aopen+updated%3A2015-08-31..2015-09-07
74+
75+
* [Expand the `std::net` module to bind more low-level interfaces](https://github.com/rust-lang/rfcs/pull/1158).
76+
* [Add `Box::leak` to leak `Box<T>` to `&'static mut T`](https://github.com/rust-lang/rfcs/pull/1233).
77+
* [Forbid wildcard dependencies on crates.io](https://github.com/rust-lang/rfcs/pull/1241).
78+
* [References into `repr(packed)` structs should be `unsafe`](https://github.com/rust-lang/rfcs/pull/1240).
79+
* [Revise the Drop Check (`dropck`) part of Rust's static analyses](https://github.com/rust-lang/rfcs/pull/1238).
80+
* [Update the RFC process with sub-teams, amongst other things.](https://github.com/rust-lang/rfcs/pull/1224).
81+
* [Lay the ground work for building powerful SIMD functionality.](https://github.com/rust-lang/rfcs/pull/1199).
82+
83+
# New RFCs
84+
85+
* [Allow overlapping implementations for marker traits](https://github.com/rust-lang/rfcs/pull/1268).
86+
* [Add `Mutex::into_inner()`](https://github.com/rust-lang/rfcs/issues/1269).
87+
* [Allow library authors to use a `#[deprecate]` attribute](https://github.com/rust-lang/rfcs/pull/1270).
88+
89+
# Crate of the Week
90+
91+
This is a new part of this weekly installation, where we will write about a crate that some of you may not know.
92+
Please nominate a crate of your choice at the [rust-users thread](https://users.rust-lang.org/t/crate-of-the-week/2704/15) so we can write about it next week.
93+
94+
For this first installment, the most votes went to [Serde](https://github.com/serde-rs/serde). Despite many of you probably knowing it, we accepted the popular vote because of the great benefit those who don't yet know it may get. Thanks go to [bstrie](https://users.rust-lang.org/users/bstrie) for the suggestion.
95+
96+
[**Serde**](https://github.com/serde-rs/serde) (de)serializes arbitrary Rust data to a number of formats, including [JSON](https://crates.io/crates/serde_json), [XML](https://github.com/serde-rs/xml), [YAML](https://github.com/serde-rs/yaml/), [Bincode](https://crates.io/crates/bincode) and [MessagePack](https://crates.io/crates/rmp). It is possible to write encoder/decoder pairs to work with Serde that don't need to know too much about Rust objects, and Rust data structures only need a pair of auto-derived traits to work with Serde. Now what can one use serializaton for? Storing Rust objects in files or database blobs, sending them between processes, over language-barriers or over the network, for one.
97+
98+
In short, Serde is _the_ Rust framework for your (de)serialization needs.
99+
100+
# Upcoming Events
101+
102+
* [9/14. Seattle Rust Meetup](https://www.eventbrite.com/e/mozilla-rust-seattle-meetup-tickets-12222326307?aff=erelexporg).
103+
* [9/15. San Diego Rust Meetup #8](http://www.meetup.com/San-Diego-Rust/events/224577039/).
104+
* [9/17. Rust Meetup Hamburg: Show, Tell and Drink](http://www.meetup.com/Rust-Meetup-Hamburg/events/225116081/).
105+
* [9/21. Rust Paris](http://www.meetup.com/Rust-Paris).
106+
* [9/23. Columbus Rust Society](http://www.meetup.com/columbus-rs/).
107+
108+
If you are running a Rust event please add it to the [calendar] to get
109+
it mentioned here. Email [Erick Tryzelaar][erickt] or [Brian
110+
Anderson][brson] for access.
111+
112+
[calendar]: https://www.google.com/calendar/embed?src=apd9vmbc22egenmtu5l6c5jbfc%40group.calendar.google.com
113+
[erickt]: mailto:[email protected]
114+
[brson]: mailto:[email protected]
115+
116+
# fn work(on: RustProject) -> Money
117+
118+
*No jobs listed for this week. Tweet us at [@ThisWeekInRust](https://twitter.com/ThisWeekInRust) to get your job offers listed here!*
119+
120+
# Quote of the Week
121+
122+
*"[Rust] the language had to dedicate so much real estate to this (difficult) problem alone, it became a disharmonic creature with one bulging muscle and little of anything else."*[Andrei Alexandrescu (one of designers of D)](https://www.reddit.com/r/programming/comments/3ioy9b/andrei_alexandrescu_c_guru_leaves_facebook_to/cuj0csn).
123+
124+
Thanks to [llogiq](https://users.rust-lang.org/users/llogiq) for the tip. [Submit your quotes for next week!][submit].
125+
126+
[submit]: http://users.rust-lang.org/t/twir-quote-of-the-week/328

0 commit comments

Comments
 (0)