| Age | Commit message (Expand) | Author | Lines |
| 2015-03-27 | rollup merge of #23741: alexcrichton/remove-int-uint | Alex Crichton | -1/+1 |
| 2015-03-25 | rustc: Remove support for int/uint | Alex Crichton | -1/+1 |
| 2015-03-24 | syntax: Update #[derive(...)] to work with phantom and associated types | Erick Tryzelaar | -6/+118 |
| 2015-03-11 | syntax: move MethMac to MacImplItem and combine {Provided,Required}Method int... | Eduard Burtescu | -2/+2 |
| 2015-03-11 | syntax: rename TypeMethod to MethodSig and use it in MethDecl. | Eduard Burtescu | -7/+7 |
| 2015-03-11 | syntax: gather common fields of impl & trait items into their respective types. | Eduard Burtescu | -26/+20 |
| 2015-03-11 | syntax: move indirection around {Trait,Impl}Item, from within. | Eduard Burtescu | -7/+7 |
| 2015-03-06 | Add #[allow_internal_unstable] to track stability for macros better. | Huon Wilson | -1/+2 |
| 2015-02-24 | Auto merge of #21689 - FlaPer87:oibit-send-and-friends, r=nikomatsakis | bors | -1/+1 |
| 2015-02-22 | Add support for default trait impls in libsyntax | Flavio Percoco | -1/+1 |
| 2015-02-20 | Remove remaining uses of `[]`. This time I tried to use deref coercions where... | Niko Matsakis | -8/+8 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -16/+16 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -16/+16 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -5/+5 |
| 2015-02-12 | Made `Self` a keyword. | Marvin Löbel | -8/+8 |
| 2015-02-09 | Accept quantification of lifetimes outside the self type in where clauses. | Nick Cameron | -0/+1 |
| 2015-02-06 | Libsyntax has been updated | GuillaumeGomez | -2/+1 |
| 2015-02-06 | Replace the get method by the deref one on InternedString | GuillaumeGomez | -1/+2 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -1/+1 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -1/+1 |
| 2015-02-02 | rollup merge of #21830: japaric/for-cleanup | Alex Crichton | -2/+2 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -2/+2 |
| 2015-02-02 | Omit integer suffix when unnecessary | Alfie John | -8/+8 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -1/+1 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -1/+1 |
| 2015-01-26 | Auto merge of #21614 - kvark:typedef, r=huonw | bors | -1/+23 |
| 2015-01-25 | Associated types support for deriving::generic::TraitDef | Dzmitry Malyshau | -1/+23 |
| 2015-01-25 | Add the span of the operator itself to ast::BinOp. | Huon Wilson | -1/+1 |
| 2015-01-21 | rollup merge of #20179: eddyb/blind-items | Alex Crichton | -1/+1 |
| 2015-01-21 | rollup merge of #21340: pshc/libsyntax-no-more-ints | Alex Crichton | -26/+26 |
| 2015-01-21 | syntax: fix fallout of merging ast::ViewItem into ast::Item. | Eduard Burtescu | -1/+1 |
| 2015-01-18 | libsyntax: 0u -> 0us, 0i -> 0is | Paul Collier | -8/+8 |
| 2015-01-18 | libsyntax: int => i32 in appropriate places | Paul Collier | -15/+15 |
| 2015-01-17 | libsyntax: uint types to usize | Paul Collier | -3/+3 |
| 2015-01-17 | s/deriving/derives in Comments/Docs | Earl St Sauver | -3/+3 |
| 2015-01-13 | Update #[deriving] documentation. | Huon Wilson | -25/+28 |
| 2015-01-08 | Store deprecated status of i/u-suffixed literals. | Huon Wilson | -1/+1 |
| 2015-01-07 | use slicing sugar | Jorge Aparicio | -24/+24 |
| 2015-01-06 | Register new snapshots | Alex Crichton | -5/+5 |
| 2015-01-06 | rollup merge of #20609: cmr/mem | Alex Crichton | -1/+1 |
| 2015-01-07 | Replace full slice notation with index calls | Nick Cameron | -23/+23 |
| 2015-01-06 | syntax/rustc: implement isize/usize | Corey Richardson | -1/+1 |
| 2015-01-05 | rollup merge of #20554: huonw/mut-pattern | Alex Crichton | -1/+1 |
| 2015-01-05 | syntax: remove remaining boxed closures | Jorge Aparicio | -13/+9 |
| 2015-01-05 | Change `&` pat to only work with &T, and `&mut` with &mut T. | Huon Wilson | -1/+1 |
| 2015-01-04 | Add syntax for negative implementations of traits | Flavio Percoco | -0/+1 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -5/+5 |
| 2015-01-03 | sed -i -s 's/\bmod,/self,/g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2015-01-02 | Accept `derive` instead of `deriving` | Nick Cameron | -12/+12 |
| 2014-12-31 | syntax: unbox closures used in let bindings | Jorge Aparicio | -1/+1 |