| Age | Commit message (Expand) | Author | Lines |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -21/+21 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -1/+1 |
| 2014-01-03 | librustc: Remove `@mut` support from the typechecker and borrow checker | Patrick Walton | -23/+23 |
| 2013-12-27 | librustc: Implement coercion for traits. | Luqman Aden | -0/+7 |
| 2013-12-26 | librustc: De-`@mut` the def map. | Patrick Walton | -3/+6 |
| 2013-12-26 | librustc: De-`@mut` the method map | Patrick Walton | -3/+6 |
| 2013-12-26 | librustc: De-`@mut` the adjustments table in the type context | Patrick Walton | -1/+2 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -63/+63 |
| 2013-11-19 | librustc: Change most uses of `&fn()` to `||`. | Patrick Walton | -2/+2 |
| 2013-11-18 | Use '..' as slice wildcard in vectors | Brian Anderson | -1/+1 |
| 2013-10-29 | librustc: Implement the `proc` type as sugar for `~once fn` and `proc` | Patrick Walton | -1/+1 |
| 2013-10-25 | libsyntax/librustc: Allow mut qualifier in patterns. | Luqman Aden | -19/+17 |
| 2013-10-22 | libsyntax/librustc: Allow specifying mut on by-value self. | Luqman Aden | -2/+2 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -3/+3 |
| 2013-10-17 | Removed the -Z once_fns compiler flag and added the new feature directive of ... | Chris Sainty | -6/+4 |
| 2013-09-30 | rustc: Remove usage of fmt! | Alex Crichton | -15/+15 |
| 2013-09-23 | librustc: Remove `@fn` managed closures from the language. | Patrick Walton | -3/+3 |
| 2013-09-11 | ident->name cleanup | John Clements | -2/+3 |
| 2013-09-11 | Properly encode/decode structural variants. | SiegeLord | -2/+2 |
| 2013-09-09 | auto merge of #9005 : alexcrichton/rust/rusty-log, r=brson | bors | -1/+1 |
| 2013-09-06 | ident->name in NamedField, elsewhere | John Clements | -4/+5 |
| 2013-09-05 | Remove the __log function for __log_level | Alex Crichton | -1/+1 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -83/+83 |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -3/+3 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -8/+8 |
| 2013-08-27 | librustc: Remove `&const` and `*const` from the language. | Patrick Walton | -10/+3 |
| 2013-08-27 | Remove remnants of implicit self | Niko Matsakis | -16/+3 |
| 2013-08-27 | Extend aliasability check to uncover `& &mut &mut` and the like | Niko Matsakis | -9/+10 |
| 2013-08-20 | Add PointerKind to LpDeref | Niko Matsakis | -10/+10 |
| 2013-08-11 | borrowck: Integrate AutoBorrowObj into borrowck / mem_categorization | Niko Matsakis | -44/+49 |
| 2013-08-04 | rm obsolete `for` support from the compiler | Daniel Micay | -1/+1 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -11/+11 |
| 2013-08-02 | replace `range` with an external iterator | Daniel Micay | -2/+1 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -10/+10 |
| 2013-07-30 | syntax: implement foreach .. in .. { .. } via desugaring. | Graydon Hoare | -0/+2 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -15/+15 |
| 2013-07-17 | librustc: Remove `copy` expressions from the language. | Patrick Walton | -7/+7 |
| 2013-07-11 | Clean up Repr impls a bit so we can add generic impls for @ and ~. | Michael Sullivan | -1/+1 |
| 2013-07-08 | Modify borrow checker to visit irrefutable patterns that appear in | Niko Matsakis | -16/+33 |
| 2013-06-29 | Great renaming: propagate throughout the rest of the codebase | Corey Richardson | -2/+1 |
| 2013-06-29 | auto merge of #7363 : bblum/rust/soundness, r=nikomatsakis | bors | -8/+8 |
| 2013-06-29 | auto merge of #7244 : bblum/rust/once, r=nikomatsakis | bors | -24/+35 |
| 2013-06-29 | 'Borrow' stack closures rather than copying them (e.g., "|x|f(x)"), in prep f... | Ben Blum | -8/+8 |
| 2013-06-28 | librustc: Fix more merge fallout. | Patrick Walton | -1/+1 |
| 2013-06-23 | Add 'static mut' items to the language | Alex Crichton | -9/+19 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -6/+8 |
| 2013-06-22 | Fix-up PP Code to reflect new lifetime param syntax | James Miller | -2/+2 |
| 2013-06-21 | vec: rm old_iter implementations, except BaseIter | Daniel Micay | -3/+3 |
| 2013-06-19 | Hide the once-move-out privilege for stack fns behind '-Z once-fns' | Ben Blum | -23/+34 |
| 2013-06-19 | Permit moving out of captured upvars in once fns. Close #2549. | Ben Blum | -5/+5 |