Popular repositories
-
rayon
Rayon: A data parallelism library for Rust
-
lalrpop
LR(1) parser generator for Rust
-
chalk
A PROLOG-ish interpreter written in Rust, intended eventually for use in the compiler
-
typed-objects-explainer
Explainer for Typed Objects and related specs.
-
intorust
Learn Rust real good.
-
rust-memory-model
Collecting examples and information to help design a memory model for Rust.
2,668 contributions in the last year
Contribution activity
September 2017
Created a pull request in rust-lang/rust
that received 45
comments
remove or encapsulate the remaining non-query data in tcx
I wound up removing the existing cache around inhabitedness since it didn't seem to be adding much value. I reworked const rvalue promotion, but no…
Created an issue in rust-lang/rust
that received 14
comments
impl Trait in argument position
As part of the latest impl Trait RFC, we decided to accept impl Trait in argument position:
fn foo(x: impl Iterator<Item = u32>) { ...
}
this is ro…