| Age | Commit message (Expand) | Author | Lines |
| 2013-11-26 | rustc: Add lint for obsolete attributes | klutzy | -7/+1 |
| 2013-11-19 | libsyntax: Change all uses of `&fn` to `||`. | Patrick Walton | -8/+15 |
| 2013-10-31 | Implement a concat!() format extension | Alex Crichton | -0/+20 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -3/+3 |
| 2013-10-18 | Remove the fmt! syntax extension | Alex Crichton | -1/+1 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -1/+1 |
| 2013-10-08 | add new enum ast::StrStyle as field to ast::lit_str | Benjamin Herr | -2/+2 |
| 2013-10-08 | add token::LIT_STR_RAW(ident, num of # symbols) | Benjamin Herr | -1/+2 |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -6/+6 |
| 2013-09-30 | Prevent leakage of fmt! into the compiler | Alex Crichton | -1/+1 |
| 2013-09-23 | test: Fix rustdoc and tests. | Patrick Walton | -1/+2 |
| 2013-09-23 | libsyntax: Remove some more `@fn`s from the macro expander | Patrick Walton | -79/+159 |
| 2013-09-15 | Reduce the amount of complexity in format! | Alex Crichton | -7/+1 |
| 2013-09-12 | Implement a format_args!() macro | Alex Crichton | -0/+2 |
| 2013-09-10 | Delay assignment of node ids until after expansion. Ensures that each AST node | Niko Matsakis | -3/+0 |
| 2013-09-06 | quote_* macros no longer need to be capturing | John Clements | -6/+7 |
| 2013-09-06 | WIP: adding mark-cancelling for macro_rules | John Clements | -2/+1 |
| 2013-09-06 | remove unneeded imports, clean up unused var warnings | John Clements | -2/+2 |
| 2013-09-06 | capturing macros now implemented | John Clements | -32/+60 |
| 2013-09-06 | separate ItemDecorator from ItemDecorator | John Clements | -2/+2 |
| 2013-09-06 | removed unneccessary SyntaxExpander structs | John Clements | -16/+5 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -6/+6 |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -7/+7 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -17/+17 |
| 2013-08-27 | librustc: Add support for type parameters in the middle of paths. | Patrick Walton | -17/+3 |
| 2013-08-24 | Settle on the format/write/print family of names | Alex Crichton | -4/+6 |
| 2013-08-24 | Implement a wrapper macro around fprintf -- ifmtf | Alex Crichton | -1/+3 |
| 2013-08-10 | Merge branch 'enum-method-privacy' of https://github.com/michaelwoerister/rus... | Erick Tryzelaar | -10/+10 |
| 2013-08-09 | auto merge of #8362 : sfackler/rust/env, r=alexcrichton | bors | -6/+8 |
| 2013-08-08 | env! syntax extension changes | Steven Fackler | -6/+8 |
| 2013-08-08 | auto merge of #8245 : alexcrichton/rust/fmt2, r=graydon | bors | -0/+2 |
| 2013-08-07 | Add initial support for a new formatting syntax | Alex Crichton | -0/+2 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -1/+1 |
| 2013-08-07 | Enable privacy check for enum methods. | Michael Woerister | -10/+10 |
| 2013-08-05 | Updated std::Option, std::Either and std::Result | Marvin Löbel | -8/+8 |
| 2013-08-02 | auto merge of #8188 : huonw/rust/cfg-macro, r=pcwalton | bors | -0/+2 |
| 2013-08-01 | Remove the pipes compiler | Brian Anderson | -4/+2 |
| 2013-08-01 | syntax: implement cfg!() which evaluates to true/false where #[cfg] would kee... | Huon Wilson | -0/+2 |
| 2013-07-29 | New naming convention for ast::{node_id, local_crate, crate_node_id, blk_chec... | Michael Woerister | -1/+1 |
| 2013-07-24 | Disallow non-comma-delimited arguments to fmt! and bytes! | Birunthan Mohanathas | -4/+5 |
| 2013-07-22 | Ast spanned<T> refactoring, renaming: crate, local, blk, crate_num, crate_cfg. | Michael Woerister | -3/+3 |
| 2013-07-20 | auto merge of #7902 : huonw/rust/attr++, r=cmr,pcwalton | bors | -1/+1 |
| 2013-07-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -1/+1 |
| 2013-07-18 | librustc: Forbid `&` pointers (other than `&'static`) inside `@` boxes. | Patrick Walton | -2/+1 |
| 2013-07-17 | librustc: Remove all uses of the `Copy` bound. | Patrick Walton | -1/+1 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -2/+2 |
| 2013-07-17 | librustc: Add a lint mode for unnecessary `copy` and remove a bunch of them. | Patrick Walton | -1/+1 |
| 2013-07-12 | Remove the global 'vec::to_owned' function | Alex Crichton | -2/+1 |
| 2013-07-07 | De-managed ast::Path | James Miller | -1/+1 |
| 2013-07-05 | Do not rely on newtype enum dereference | Seo Sanghyeon | -10/+7 |