| Age | Commit message (Expand) | Author | Lines |
| 2014-08-29 | Add support for labeled while loops. | Pythoner6 | -1/+5 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -92/+51 |
| 2014-08-27 | auto merge of #16689 : wickerwaka/rust/crate-as, r=pcwalton | bors | -3/+3 |
| 2014-08-26 | DST coercions and DST structs | Nick Cameron | -15/+3 |
| 2014-08-23 | extern crate foobar as foo; | wickerwaka | -3/+3 |
| 2014-08-19 | Fix double evaluation of read+write operands | Piotr Czarnecki | -2/+8 |
| 2014-08-15 | auto merge of #16424 : pcwalton/rust/where-clauses, r=nikomatsakis | bors | -44/+95 |
| 2014-08-14 | librustc: Implement simple `where` clauses. | Patrick Walton | -44/+95 |
| 2014-08-14 | auto merge of #16468 : pcwalton/rust/as-renaming-import, r=alexcrichton | bors | -4/+8 |
| 2014-08-14 | libsyntax: Accept `use foo as bar;` in lieu of `use bar as foo;` | Patrick Walton | -4/+8 |
| 2014-08-14 | librustc: Stop assuming that implementations and traits only contain | Patrick Walton | -8/+21 |
| 2014-08-14 | librustc: Tie up loose ends in unboxed closures. | Patrick Walton | -25/+42 |
| 2014-08-14 | auto merge of #15929 : pcwalton/rust/by-ref-closures, r=alexcrichton | bors | -2/+14 |
| 2014-08-13 | librustc: Parse, but do not fully turn on, the `ref` keyword for | Patrick Walton | -2/+14 |
| 2014-08-13 | quote_expr macro: embed Ident using special encoding that preserves hygiene. | Felix S. Klock II | -28/+69 |
| 2014-08-09 | refactored pprust::State constructor methods out from `pprust::print_crate`. | Felix S. Klock II | -24/+51 |
| 2014-08-07 | Temporary bootstrapping hack: introduce syntax for r egion bounds like `'b:'a`, | Niko Matsakis | -2/+18 |
| 2014-08-06 | AST refactoring: merge PatWild and PatWildMulti into one variant with a flag. | Felix S. Klock II | -3/+3 |
| 2014-08-05 | Fixes missing overflow lint for i64 #14269 | Falco Hirschenberger | -9/+19 |
| 2014-08-01 | Fix misspelled comments. | Joseph Crail | -3/+3 |
| 2014-07-30 | auto merge of #15915 : erickt/rust/master, r=alexcrichton | bors | -1/+1 |
| 2014-07-29 | remove seek from std::io::MemWriter, add SeekableMemWriter to librustc | Erick Tryzelaar | -1/+1 |
| 2014-07-29 | Fix a bug pretty printing `match { 5i } { _ => { } }` | Erick Tryzelaar | -48/+51 |
| 2014-07-24 | libsyntax: Remove `~self` and `mut ~self` from the language. | Patrick Walton | -3/+0 |
| 2014-07-20 | Implement new mod import sugar | Jakub Wieczorek | -1/+8 |
| 2014-07-18 | librustc: Implement unboxed closures with mutable receivers | Patrick Walton | -7/+54 |
| 2014-07-17 | librustc: Remove cross-borrowing of `Box<T>` to `&T` from the language, | Patrick Walton | -1/+1 |
| 2014-07-16 | librustc: Implement the fully-expanded, UFCS form of explicit self. | Patrick Walton | -0/+5 |
| 2014-07-15 | Fix errors | Adolfo OchagavĂa | -1/+0 |
| 2014-07-15 | Deprecate `str::from_utf8_owned` | Adolfo OchagavĂa | -1/+1 |
| 2014-07-13 | refactor Method definition to make space for macros | John Clements | -5/+26 |
| 2014-07-09 | Register new snapshots | Alex Crichton | -140/+0 |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -151/+158 |
| 2014-07-08 | carry self ident forward through re-parsing | John Clements | -3/+3 |
| 2014-07-08 | auto merge of #15493 : brson/rust/tostr, r=pcwalton | bors | -20/+160 |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -20/+160 |
| 2014-07-08 | Change DST syntax: type -> Sized? | Nick Cameron | -6/+15 |
| 2014-07-07 | Improve non-exhaustive pattern witnesses for structs with multiple fields | Jakub Wieczorek | -2/+4 |
| 2014-07-03 | Simplify PatIdent to contain an Ident rather than a Path | John Clements | -5/+8 |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -2/+2 |
| 2014-06-28 | auto merge of #15208 : alexcrichton/rust/snapshots, r=pcwalton | bors | -1/+5 |
| 2014-06-28 | Rename all raw pointers as necessary | Alex Crichton | -1/+5 |
| 2014-06-26 | Remove unnecessary to_string calls | Piotr Jawniak | -2/+2 |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -5/+3 |
| 2014-06-17 | Add a b"xx" byte string literal of type &'static [u8]. | Simon Sapin | -13/+3 |
| 2014-06-17 | Add a b'x' byte literal of type u8. | Simon Sapin | -0/+6 |
| 2014-06-16 | rustc: Improve span for error about using a method as a field. | Kevin Butler | -1/+1 |
| 2014-06-13 | Fix all violations of stronger guarantees for mutable borrows | Cameron Zwarich | -3/+6 |
| 2014-06-13 | libsyntax: Allow `+` to separate trait bounds from objects. | Patrick Walton | -6/+21 |
| 2014-06-13 | librustc: Fix the issue with labels shadowing variable names by making | Patrick Walton | -8/+3 |