| Age | Commit message (Expand) | Author | Lines |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -12/+12 |
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -13/+13 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -35/+35 |
| 2014-05-23 | auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballard | bors | -1/+0 |
| 2014-05-23 | syntax: Clean out obsolete syntax parsing | Alex Crichton | -1/+0 |
| 2014-05-22 | libstd: Remove all uses of `~str` from `libstd` | Patrick Walton | -3/+3 |
| 2014-05-08 | libsyntax: Remove uses of `~str` from libsyntax, and fix fallout | Patrick Walton | -47/+55 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -6/+12 |
| 2014-05-02 | syntax: implement ToSource for more things in the quasiquoter. | Huon Wilson | -0/+23 |
| 2014-04-22 | add support for quadruple precision floating point | Daniel Micay | -1/+2 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -16/+16 |
| 2014-04-16 | syntax: unify all MacResult's into a single trait. | Huon Wilson | -12/+12 |
| 2014-03-30 | Removed deprecated functions `map` and `flat_map` for vectors and slices. | Marvin Löbel | -3/+3 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -4/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -2/+2 |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -8/+14 |
| 2014-03-01 | libsyntax: Mechanically change `~[T]` to `Vec<T>` | Patrick Walton | -52/+52 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -8/+7 |
| 2014-02-08 | Fixed error starting with uppercase | mr.Shu | -2/+2 |
| 2014-02-02 | libsyntax: De-`@str` pathnames | Patrick Walton | -17/+14 |
| 2014-02-02 | librustc: Stop using `@str` for source. | Patrick Walton | -11/+11 |
| 2014-02-02 | libsyntax: De-`@str` `to_source` | Patrick Walton | -41/+42 |
| 2014-02-02 | libsyntax: De-`@str` literal strings in the AST | Patrick Walton | -2/+4 |
| 2014-01-23 | Redo exported macro serialization | Steven Fackler | -1/+0 |
| 2014-01-20 | auto merge of #11660 : sfackler/rust/quote-unused-sp, r=huonw | bors | -2/+2 |
| 2014-01-18 | Avoid unused variable warning in quote_*! | Steven Fackler | -2/+2 |
| 2014-01-18 | auto merge of #11607 : alexcrichton/rust/issue-9957, r=cmr | bors | -1/+1 |
| 2014-01-18 | Forbid unnecessary visibility on view items | Alex Crichton | -1/+1 |
| 2014-01-16 | Load macros from external modules | Steven Fackler | -1/+1 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -67/+63 |
| 2014-01-02 | libsyntax: De-`@mut` `quote_depth` in the parser | Patrick Walton | -1/+1 |
| 2014-01-02 | libsyntax: Make the parser mutable | Patrick Walton | -9/+5 |
| 2013-12-29 | Start passing around &mut ExtCtxt | Steven Fackler | -6/+6 |
| 2013-12-28 | Stop using @ExtCtxt | Steven Fackler | -19/+19 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -7/+7 |
| 2013-12-10 | Extend allocation lint for boxing expressions | Seo Sanghyeon | -11/+11 |
| 2013-12-08 | Remove dead codes | Kiet Tran | -7/+1 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -1/+1 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -5/+5 |
| 2013-10-08 | add new enum ast::StrStyle as field to ast::lit_str | Benjamin Herr | -1/+1 |
| 2013-10-08 | add token::LIT_STR_RAW(ident, num of # symbols) | Benjamin Herr | -0/+7 |
| 2013-10-01 | remove the `float` type | Daniel Micay | -1/+0 |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -5/+5 |
| 2013-09-06 | quote_* macros no longer need to be capturing | John Clements | -33/+12 |
| 2013-09-06 | capturing macros now implemented | John Clements | -16/+43 |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -1/+9 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -17/+17 |
| 2013-09-02 | Renamed syntax::ast::ident -> Ident | Marvin Löbel | -5/+5 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -17/+17 |
| 2013-08-18 | quote_*! macros take an ExtCtx | Steven Fackler | -146/+82 |