| Age | Commit message (Expand) | Author | Lines |
| 2014-02-27 | Fix syntax::ext::deriving{,::*} docs formatting. | Chris Morgan | -2/+2 |
| 2014-02-24 | Remove deriving(ToStr) | Alex Crichton | -2/+0 |
| 2014-02-24 | Transition to new `Hash`, removing IterBytes and std::to_bytes. | Huon Wilson | -2/+0 |
| 2014-02-21 | std: rewrite Hash to make it more generic | Erick Tryzelaar | -0/+2 |
| 2014-02-19 | librustc: Remove unique vector patterns from the language. | Patrick Walton | -1/+4 |
| 2014-02-13 | Tweak ItemDecorator API | Steven Fackler | -9/+7 |
| 2014-02-08 | Implement `#[deriving(Show)]`. | Huon Wilson | -0/+2 |
| 2014-02-08 | syntax: convert deriving to take &mut ExtCtxt. | Huon Wilson | -1/+1 |
| 2014-02-08 | syntax: remove some dead code. | Huon Wilson | -15/+1 |
| 2014-02-02 | libsyntax: Introduce an `InternedString` type to reduce `@str` in the | Patrick Walton | -4/+4 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -7/+7 |
| 2014-01-07 | Fix remaining cases of leaking imports | Alex Crichton | -1/+0 |
| 2013-12-28 | Stop using @ExtCtxt | Steven Fackler | -3/+3 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -2/+2 |
| 2013-11-26 | libsyntax: Remove all non-`proc` `do` syntax. | Patrick Walton | -2/+2 |
| 2013-11-26 | librustc: Remove remaining uses of `&fn()` in favor of `||`. | Patrick Walton | -11/+11 |
| 2013-10-02 | syntax: Add #[deriving(FromPrimitive)] syntax extension | Erick Tryzelaar | -0/+4 |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -2/+2 |
| 2013-09-12 | syntax: add #[deriving(Default)] syntax extension | Erick Tryzelaar | -0/+2 |
| 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 | -4/+4 |
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -10/+9 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -2/+0 |
| 2013-06-16 | auto merge of #7142 : alexcrichton/rust/deriving-zero, r=pcwalton | bors | -0/+2 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-14 | Implement a deriving(Zero) attribute | Alex Crichton | -0/+2 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -12/+12 |
| 2013-06-09 | std: remove foldr and alli methods in vec | Huon Wilson | -1/+2 |
| 2013-06-07 | syntax: move functions from deriving/mod to deriving/generic. | Huon Wilson | -254/+1 |
| 2013-06-04 | librustc: Disallow multiple patterns from appearing in a "let" declaration. | Patrick Walton | -3/+4 |
| 2013-05-29 | librustc: Stop reexporting the standard modules from prelude. | Patrick Walton | -0/+3 |
| 2013-05-22 | syntax: Change syntax extensions to expand to `std::foo` instead of `core::foo` | Patrick Walton | -1/+1 |
| 2013-05-22 | librustc: Change `std` to `extra` throughout libsyntax and librustc | Patrick Walton | -1/+1 |
| 2013-05-22 | libextra: Rename the actual metadata names of libcore to libstd and libstd to... | Patrick Walton | -0/+2 |
| 2013-05-22 | syntax/ext: convert all AstBuilder methods to a uniform syntax. | Huon Wilson | -63/+39 |
| 2013-05-22 | syntax/ext: migrate build.rs functions to AstBuilder methods. | Huon Wilson | -26/+26 |
| 2013-05-22 | syntax/ext: modernise ext_ctxt to be CamelCase and use new. | Huon Wilson | -13/+13 |
| 2013-05-20 | Remove all unnecessary allocations (as flagged by lint) | Alex Crichton | -2/+2 |
| 2013-05-16 | syntax: implement #[deriving(DeepClone)]. Fixes #6514. | Huon Wilson | -0/+1 |
| 2013-05-16 | syntax: deprecate #[auto_{en,de}code] in favour of #[deriving({En,De}codable)]. | Huon Wilson | -4/+9 |
| 2013-05-14 | syntax: Remove #[allow(vecs_implicitly_copyable)] | Alex Crichton | -4/+4 |
| 2013-05-12 | librustc: Make `self` and `static` into keywords | Patrick Walton | -2/+1 |
| 2013-05-09 | Use a specialized string interner to reduce the need for owned strings | Björn Steinbrink | -3/+3 |
| 2013-05-08 | librustc: Fix merge fallout. | Patrick Walton | -2/+2 |
| 2013-05-07 | libsyntax: add #[deriving(Rand, ToStr)]. | Huon Wilson | -0/+6 |
| 2013-05-07 | libsyntax: extend generic deriving code to handle almost all possible traits. | Huon Wilson | -122/+142 |
| 2013-04-27 | only use #[no_core] in libcore | Daniel Micay | -4/+0 |
| 2013-04-19 | syntax: de-mode and prepare for de-modeing rustc | Alex Crichton | -1/+1 |
| 2013-04-12 | libsyntax: derive Clone, Eq, TotalEq, Ord, TotalOrd with the new generic deri... | Huon Wilson | -3/+18 |
| 2013-04-12 | libsyntax: abstract most of the deriving boilerplate into a simpler(r) interf... | Huon Wilson | -29/+72 |