| Age | Commit message (Expand) | Author | Lines |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -2/+2 |
| 2015-02-06 | librustc_borrowck has been updated | GuillaumeGomez | -2/+2 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -1/+0 |
| 2015-02-06 | Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -2/+2 |
| 2015-02-04 | Fix for misspelled comments. | Joseph Crail | -1/+1 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -11/+11 |
| 2015-02-03 | Switch missing_copy_implementations to default-allow | Steven Fackler | -1/+0 |
| 2015-02-03 | Remove the explicit closure kind syntax from the parser and AST; | Niko Matsakis | -1/+1 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -20/+20 |
| 2015-01-29 | Auto merge of #21691 - edwardw:double-closure, r=nikomatsakis | bors | -11/+11 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -7/+7 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -1/+1 |
| 2015-01-27 | borrowck: aliasability violation with closure captures can happen | Edward Wang | -11/+11 |
| 2015-01-26 | Remove "unboxed" attribute in code referring to new closures. | Eduard Burtescu | -2/+2 |
| 2015-01-21 | rollup merge of #21258: aturon/stab-3-index | Alex Crichton | -1/+1 |
| 2015-01-21 | Fallout from stabilization. | Aaron Turon | -1/+1 |
| 2015-01-20 | std: Rename Show/String to Debug/Display | Alex Crichton | -1/+1 |
| 2015-01-18 | Fix typedef/module name conflicts in the compiler | Alex Crichton | -2/+2 |
| 2015-01-08 | auto merge of #20760 : alexcrichton/rust/rollup, r=alexcrichton | bors | -9/+15 |
| 2015-01-08 | Update the "English-language" to-string function of a `cmt` to use | Niko Matsakis | -9/+15 |
| 2015-01-08 | librustc::session : Make DebuggingOpts use the options! macro | Manish Goregaokar | -2/+1 |
| 2015-01-07 | use slicing sugar | Jorge Aparicio | -93/+93 |
| 2015-01-06 | rollup merge of #20481: seanmonstar/fmt-show-string | Alex Crichton | -34/+34 |
| 2015-01-07 | fallout | Nick Cameron | -5/+5 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -34/+34 |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -69/+69 |
| 2015-01-05 | rollup merge of #20482: kmcallister/macro-reform | Alex Crichton | -9/+0 |
| 2015-01-05 | remove ty_closure | Jorge Aparicio | -7/+0 |
| 2015-01-05 | Remove unused if_ok! macro | Keegan McAllister | -9/+0 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -20/+20 |
| 2015-01-03 | sed -i -s 's/\bmod,/self,/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2015-01-03 | Make `ty::ParameterEnvironment`, not `ty::ctxt`, implement `Typer` and | Niko Matsakis | -45/+41 |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -1/+1 |
| 2015-01-02 | Fallout - change array syntax to use `;` | Nick Cameron | -3/+3 |
| 2014-12-31 | rustc_borrowck: unbox closures used in let bindings | Jorge Aparicio | -11/+11 |
| 2014-12-31 | rustc_borrowck: unbox closures used in function arguments | Jorge Aparicio | -4/+12 |
| 2014-12-30 | Fallout from stabilization | Aaron Turon | -4/+3 |
| 2014-12-30 | Make ExprUseVisitor<..> use inherited parameter environments. | Niko Matsakis | -2/+2 |
| 2014-12-29 | Store Substs in an arena in the tcx. | Huon Wilson | -1/+1 |
| 2014-12-27 | auto merge of #20119 : FlaPer87/rust/oibit-send-and-friends, r=nikomatsakis | bors | -12/+12 |
| 2014-12-27 | auto merge of #20158 : nikomatsakis/rust/fn-inference-refactor, r=eddyb | bors | -6/+1 |
| 2014-12-27 | Fix fallout | Nick Cameron | -6/+0 |
| 2014-12-26 | Rename `UniquePtr` to `Unique` | Flavio Percoco | -12/+12 |
| 2014-12-26 | Rename `OwnedPtr` to `UniquePtr` | Flavio Percoco | -12/+12 |
| 2014-12-25 | Remove `McResult` from the mem-categorization interface. | Niko Matsakis | -6/+1 |
| 2014-12-21 | Fallout of std::str stabilization | Alex Crichton | -64/+64 |
| 2014-12-20 | Fix the fallout of removing feature(import_shadowing). | Eduard Burtescu | -2/+0 |
| 2014-12-19 | librustc_borrowck: use `#[deriving(Copy)]` | Jorge Aparicio | -32/+12 |