| Age | Commit message (Expand) | Author | Lines |
| 2014-06-14 | Register new snapshots | Alex Crichton | -1/+0 |
| 2014-06-11 | syntax: Move the AST from @T to Gc<T> | Alex Crichton | -3/+5 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -2/+2 |
| 2014-05-30 | syntax: Prepare for Total{Eq,Ord} => {Eq,Ord} | Alex Crichton | -2/+3 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -3/+2 |
| 2014-05-28 | rustc: Accept PartialOrd/PartialOrdEq for Eq/Ord | Alex Crichton | -2/+3 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -2/+4 |
| 2014-05-01 | Allow built-in traits to be derived | Flavio Percoco | -0/+5 |
| 2014-03-18 | Docify std::vec_ng | Steven Fackler | -1/+1 |
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -1/+0 |
| 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 |