Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit 61b5dab

Browse files
authored
Merge pull request #25 from rust-lang/master
17.8.13.23.9
2 parents 3b61394 + 15060a9 commit 61b5dab

File tree

8 files changed

+28
-10
lines changed

8 files changed

+28
-10
lines changed

_data/team.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,8 @@ people:
9898
Kimundi:
9999
name: Marvin Löbel
100100
irc: kimundi
101+
KodrAus:
102+
name: Ashley Mannix
101103
llogiq:
102104
name: llogiq
103105
Mark-Simulacrum:
@@ -128,6 +130,9 @@ people:
128130
peschkaj:
129131
name: Jeremiah Peschka
130132
irc: peschkaj
133+
petrochenkov:
134+
name: Vadim Petrochenkov
135+
irc: petrochenkov
131136
pnkfelix:
132137
name: Felix Klock
133138
QuietMisdreavus:
@@ -185,9 +190,12 @@ teams:
185190
responsibility: "the Rust standard library, rust-lang crates, conventions, and ecosystem support"
186191
members: [brson, alexcrichton, sfackler, BurntSushi, Kimundi, dtolnay, aturon]
187192
lead: aturon
193+
- name: Library team shepherds
194+
responsibility: "coordinating the Libz Blitz, helping guide libs RFCs to completion, keeping pulse on the ecosystem"
195+
members: [KodrAus]
188196
- name: Compiler team
189197
responsibility: "compiler internals, optimizations"
190-
members: [arielb1, eddyb, nrc, pnkfelix, nikomatsakis, aatch, jseyfried, michaelwoerister]
198+
members: [arielb1, eddyb, nrc, petrochenkov, pnkfelix, nikomatsakis, aatch, jseyfried, michaelwoerister]
191199
lead: nikomatsakis
192200
- name: Dev tools team
193201
responsibility: "overall direction for tools for working with Rust code"

_data/users.yml

+15
Original file line numberDiff line numberDiff line change
@@ -447,4 +447,19 @@
447447
url: http://bitfury.com/
448448
logo: bitfury_group.png
449449
how: "<a href='https://exonum.com'>Exonum is an extensible framework for blockchain projects written in Rust.</a>"
450+
-
451+
name: WINK Streaming
452+
url: http://www.winkstreaming.com
453+
logo: wink.png
454+
how: "Rust key to our core low latency H.264 and HEVC encoding and transcoding engine."
455+
-
456+
name: Collective Sense
457+
url: https://collective-sense.com/
458+
logo: collective-sense.png
459+
how: "We use Rust to implement data collectors and processors in our network monitoring and security analysis software. Our product needs to be both secure and extremely fast which makes Rust a perfect fit."
460+
-
461+
name: Shiftleft
462+
url: https://www.shiftleft.io/
463+
logo: shift-left.png
464+
how: "ShiftLeft is a Silicon Valley startup employing innovative techniques to bring clarity and rigor to the security space. Our <a href='http://blog.shiftleft.io'>bespoke runtime security agent</a> is written in Rust."
450465

_includes/example.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn main() {
88
print!("{} : ", greeting);
99
match num {
1010
0 => println!("This code is editable and runnable!"),
11-
1 => println!("Este código es editable y ejecutable!"),
11+
1 => println!("¡Este código es editable y ejecutable!"),
1212
2 => println!("Ce code est modifiable et exécutable!"),
1313
3 => println!("Questo codice è modificabile ed eseguibile!"),
1414
4 => println!("このコードは編集して実行出来ます!"),

en-US/community.md

+2-7
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ help get you started.
253253

254254
## Rust Development
255255

256-
Rust has had over [1,200 different contributors][authors], a number that grows
256+
Rust has had over [2,000 different contributors][authors], a number that grows
257257
every single week. [We'd love for you to join that list][contribute]!
258258

259259
As mentioned above, the [Rust Internals Forum][internals_forum] is dedicated to
@@ -268,13 +268,8 @@ happens on GitHub:
268268
through which the Rust community and the teams reach consensus on new
269269
features proposed for the language and official libraries and tools.
270270

271-
Roughly weekly, the Rust teams produce [team reports][team_reports] tracking
272-
team business, including the progression of proposals through the RFC and
273-
implementation process.
274-
275-
[authors]: https://github.com/rust-lang/rust/blob/88397e092e01b6043b6f65772710dfe0e59056c5/AUTHORS.txt
271+
[authors]: https://thanks.rust-lang.org/rust/all-time
276272
[contribute]: contribute.html
277273
[github]: https://github.com/rust-lang/rust
278274
[rfcs]: https://github.com/rust-lang/rfcs
279-
[team_reports]: https://github.com/rust-lang/subteams
280275
[issue_tracking]: https://github.com/rust-lang/rust/issues

en-US/faq.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Aside from the compilation model, there are several other aspects of Rust's lang
216216

217217
First, Rust has a moderately-complex type system, and must spend a non-negligible amount of compile time enforcing the constraints that make Rust safe at runtime.
218218

219-
Secondly, the Rust compiler suffers from long-standing technical debt, and notably generates poor-quality LLVM IR which LLVM must spend time "fixing". There is hope that future [MIR-based](https://github.com/rust-lang/rfcs/blob/master/text/1211-mir.md) optimization and translation passes will ease the burden the Rust compiler places on LLVM.
219+
Secondly, the Rust compiler suffers from long-standing technical debt, and notably generates poor-quality LLVM IR which LLVM must spend time "fixing." The addition of a new internal representation called [MIR](https://github.com/rust-lang/rfcs/blob/master/text/1211-mir.md) to the Rust compiler offers the potential to perform more optimizations and improve the quality of LLVM IR generated, but this work has not yet occured.
220220

221221
Thirdly, Rust's use of LLVM for code generation is a double-edged sword: while it enables Rust to have world-class runtime performance, LLVM is a large framework that is not focused on compile-time performance, particularly when working with poor-quality inputs.
222222

user-logos/collective-sense.png

13.9 KB
Loading

user-logos/shift-left.png

44.8 KB
Loading

user-logos/wink.png

60.1 KB
Loading

0 commit comments

Comments
 (0)