| Age | Commit message (Expand) | Author | Lines |
| 2015-04-21 | syntax: Remove uses of #[feature(slice_patterns)] | Erick Tryzelaar | -14/+14 |
| 2015-04-21 | syntax: remove #![feature(box_syntax, box_patterns)] | Erick Tryzelaar | -16/+16 |
| 2015-04-18 | Auto merge of #23985 - erickt:derive-cleanup, r=erickt | bors | -512/+496 |
| 2015-04-15 | syntax: Clean up the indentation for #[derive(Eq)] | Erick Tryzelaar | -12/+14 |
| 2015-04-15 | syntax: Change deriving methods to take a `&mut FnMut(P<Item>)` | Erick Tryzelaar | -115/+97 |
| 2015-04-15 | syntax: Rename deriving/cmp/* to match their current names | Erick Tryzelaar | -415/+415 |
| 2015-04-14 | Negative case of `len()` -> `is_empty()` | Tamir Duberstein | -3/+3 |
| 2015-04-14 | Positive case of `len()` -> `is_empty()` | Tamir Duberstein | -1/+1 |
| 2015-04-14 | syntax: Remove derive(Rand) | Alex Crichton | -178/+0 |
| 2015-04-10 | fix some comments. | Felix S. Klock II | -6/+7 |
| 2015-04-10 | Incorporate repr-attr into deriving(PartialOrd) to avoid truncation errors. | Felix S. Klock II | -13/+38 |
| 2015-04-10 | Re-add a fixme after some investigation into what's going on. | Felix S. Klock II | -0/+11 |
| 2015-04-10 | Change `derive` expansions to use `discriminant_value` intrinsic. | Felix S. Klock II | -30/+27 |
| 2015-04-01 | Fallout in libsyntax | Niko Matsakis | -1/+1 |
| 2015-03-28 | Rollup merge of #23803 - richo:unused-braces, r=Manishearth | Manish Goregaokar | -1/+1 |
| 2015-03-28 | cleanup: Remove unused braces in use statements | Richo Healey | -1/+1 |
| 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-23 | rollup merge of #23506: alexcrichton/remove-some-deprecated-things | Alex Crichton | -10/+0 |
| 2015-03-20 | don't use Result::ok just to be able to use unwrap/unwrap_or | Oliver Schneider | -3/+3 |
| 2015-03-18 | rustc: Remove some long deprecated features: | Alex Crichton | -10/+0 |
| 2015-03-12 | Auto merge of #23265 - eddyb:meth-ast-refactor, r=nikomatsakis | bors | -24/+18 |
| 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-09 | Switch derive(Debug) to use the debug builders | Steven Fackler | -62/+40 |
| 2015-03-06 | Make #[derive(Anything)] into sugar for #[derive_Anything] | Keegan McAllister | -117/+140 |
| 2015-03-06 | Add #[allow_internal_unstable] to track stability for macros better. | Huon Wilson | -1/+2 |
| 2015-03-03 | Switched to Box::new in many places. | Felix S. Klock II | -37/+38 |
| 2015-03-03 | Accommodate simple cases of arith-overflow in `rustc` related crates. | Felix S. Klock II | -1/+1 |
| 2015-03-03 | Add `core::num::wrapping` and fix overflow errors. | James Miller | -19/+18 |
| 2015-02-24 | rustc_resolve: use the visitor model more, remove redundant repeated lookups. | Eduard Burtescu | -4/+10 |
| 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 | -14/+14 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -19/+19 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -19/+19 |
| 2015-02-18 | rollup merge of #22480: alexcrichton/hashv3 | Alex Crichton | -15/+10 |
| 2015-02-18 | std: Stabilize the `hash` module | Alex Crichton | -15/+10 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -5/+5 |
| 2015-02-16 | Fix fallout in libsyntax from RFC 599. Clarity and efficiency seems to be mos... | Niko Matsakis | -2/+2 |
| 2015-02-12 | Made `Self` a keyword. | Marvin Löbel | -14/+14 |
| 2015-02-09 | Accept quantification of lifetimes outside the self type in where clauses. | Nick Cameron | -0/+1 |
| 2015-02-07 | Don't use std:: paths in syntax extensions when compiling a #![no_std] crate | Keegan McAllister | -28/+68 |
| 2015-02-07 | Use path helper macros in deriving | Keegan McAllister | -28/+38 |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -2/+2 |
| 2015-02-06 | Libsyntax has been updated | GuillaumeGomez | -11/+5 |
| 2015-02-06 | Replace the get method by the deref one on InternedString | GuillaumeGomez | -5/+11 |