| Age | Commit message (Expand) | Author | Lines |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -2/+2 |
| 2015-04-04 | Added test for #24036, using spans to display note/help for this message now | Sean Bowe | -1/+2 |
| 2015-04-04 | Fixed bug calling .note() instead of .help(). Added small note when two | Sean Bowe | -1/+1 |
| 2015-03-27 | rollup merge of #23741: alexcrichton/remove-int-uint | Alex Crichton | -2/+2 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -2/+2 |
| 2015-03-25 | infer: Drop pointless format! calls | Richo Healey | -14/+14 |
| 2015-03-25 | infer: Move TypeOrigin formatting onto it's enum | Richo Healey | -15/+1 |
| 2015-03-11 | syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int... | Eduard Burtescu | -13/+15 |
| 2015-03-11 | syntax: rename TypeMethod to MethodSig and use it in MethDecl. | Eduard Burtescu | -10/+10 |
| 2015-03-11 | syntax: gather common fields of impl & trait items into their respective types. | Eduard Burtescu | -10/+10 |
| 2015-03-03 | Change span_help calls to fileline_help where appropriate | Ivan Radanov Ivanov | -3/+3 |
| 2015-02-24 | Implement `<T>::method` UFCS expression syntax. | Eduard Burtescu | -2/+9 |
| 2015-02-24 | rustc: combine partial_def_map and last_private_map into def_map. | Eduard Burtescu | -1/+1 |
| 2015-02-24 | syntax: don't store a secondary NodeId for TyPath. | Eduard Burtescu | -3/+3 |
| 2015-02-20 | Remove remaining uses of `[]`. This time I tried to use deref coercions where... | Niko Matsakis | -25/+25 |
| 2015-02-18 | rollup merge of #22286: nikomatsakis/variance-4b | Alex Crichton | -0/+16 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -7/+7 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -7/+7 |
| 2015-02-18 | Constrain operands to outlive the operation. Fixes #21422. | Niko Matsakis | -0/+16 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-16 | Auto merge of #22230 - nikomatsakis:object-lifetime-defaults-2, r=pnkfelix | bors | -2/+2 |
| 2015-02-16 | Address nits by @pnkfelix | Niko Matsakis | -2/+2 |
| 2015-02-16 | rust_typeck: remove unnecessary typing of `&[]` as `&'static [T; 0]`. | Eduard Burtescu | -1/+0 |
| 2015-02-11 | destructor checker (dropck). | Felix S. Klock II | -1/+24 |
| 2015-02-11 | Added DestructionScope variant to CodeExtent, representing the area | Felix S. Klock II | -1/+1 |
| 2015-02-09 | Accept quantification of lifetimes outside the self type in where clauses. | Nick Cameron | -1/+2 |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -1/+1 |
| 2015-02-06 | librustc has been updated | GuillaumeGomez | -11/+7 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -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 | -14/+14 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -2/+1 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -2/+2 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -1/+1 |
| 2015-01-27 | accommodate new scoping rules in rustc and rustdoc source. | Felix S. Klock II | -2/+2 |
| 2015-01-20 | Add error codes to rustc | Brian Anderson | -24/+15 |
| 2015-01-18 | Make output type in ast::FnDecl optional | Seo Sanghyeon | -0/+1 |
| 2015-01-07 | use slicing sugar | Jorge Aparicio | -59/+59 |
| 2015-01-07 | Merge pull request #20674 from jbcrail/fix-misspelled-comments | bors | -1/+1 |
| 2015-01-06 | Fix misspelled comments. | Joseph Crail | -1/+1 |
| 2015-01-06 | rollup merge of #20481: seanmonstar/fmt-show-string | Alex Crichton | -2/+2 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -2/+2 |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -37/+37 |
| 2015-01-05 | Treat associated types the same as type parameters when it comes to region bo... | Niko Matsakis | -28/+31 |
| 2015-01-04 | Add syntax for negative implementations of traits | Flavio Percoco | -1/+1 |
| 2015-01-03 | sed -i -s 's/\bmod,/self,/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2014-12-30 | Fallout from stabilization | Aaron Turon | -1/+1 |
| 2014-12-30 | Implement associated type projection and normalization. | Niko Matsakis | -5/+13 |
| 2014-12-29 | rollup merge of #20194: nick29581/dst-syntax | Alex Crichton | -3/+2 |