| Age | Commit message (Expand) | Author | Lines |
| 2015-01-07 | std: Stablize the macros module | Alex Crichton | -117/+0 |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -1/+0 |
| 2014-12-25 | Remove Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes, IntoString. | Simon Sapin | -0/+1 |
| 2014-11-02 | Convert some notes to help messages | P1start | -2/+2 |
| 2014-10-09 | syntax: Tweak the return value of bytes!() | Alex Crichton | -14/+9 |
| 2014-09-22 | manual -> reference & formatting | Steve Klabnik | -1/+1 |
| 2014-09-14 | syntax: fix fallout from using ptr::P. | Eduard Burtescu | -1/+1 |
| 2014-08-27 | Implement generalized object and type parameter bounds (Fixes #16462) | Niko Matsakis | -2/+4 |
| 2014-08-05 | Fixes missing overflow lint for i64 #14269 | Falco Hirschenberger | -5/+6 |
| 2014-06-18 | Revert bytes!() docstring change, and fix a typo. | Simon Sapin | -1/+1 |
| 2014-06-18 | Deprecate the bytes!() macro. | Simon Sapin | -0/+8 |
| 2014-06-13 | librustc: Fix the issue with labels shadowing variable names by making | Patrick Walton | -1/+13 |
| 2014-05-18 | Make bytes!() return 'static | Kevin Ballard | -6/+27 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -1/+3 |
| 2014-05-02 | syntax: store char literals/tokens as `char`s rather than u32s. | Huon Wilson | -3/+1 |
| 2014-04-16 | syntax: unify all MacResult's into a single trait. | Huon Wilson | -3/+3 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -1/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -0/+1 |
| 2014-03-01 | libsyntax: Mechanically change `~[T]` to `Vec<T>` | Patrick Walton | -1/+1 |
| 2014-02-18 | Avoid returning original macro if expansion fails. | Douglas Young | -1/+1 |
| 2014-02-08 | Fixed error starting with uppercase | mr.Shu | -6/+6 |
| 2014-02-02 | libsyntax: De-`@str` literal strings in the AST | Patrick Walton | -2/+2 |
| 2014-01-18 | syntax::ext: replace span_fatal with span_err in many places. | Huon Wilson | -1/+4 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -5/+5 |
| 2013-12-29 | Start passing around &mut ExtCtxt | Steven Fackler | -1/+1 |
| 2013-12-28 | Stop using @ExtCtxt | Steven Fackler | -1/+1 |
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -1/+1 |
| 2013-10-08 | add new enum ast::StrStyle as field to ast::lit_str | Benjamin Herr | -1/+1 |
| 2013-09-16 | Limit spans in bytes!() error messages to the argument in question | Kevin Ballard | -10/+10 |
| 2013-09-04 | stop treating char as an integer type | Daniel Micay | -2/+4 |
| 2013-09-03 | Modernized a few more types in syntax::ast | Marvin Löbel | -1/+1 |
| 2013-09-01 | Modernized a few type names in rustc and syntax | Marvin Löbel | -2/+2 |
| 2013-08-03 | remove obsolete `foreach` keyword | Daniel Micay | -2/+2 |
| 2013-08-01 | migrate many `for` loops to `foreach` | Daniel Micay | -2/+2 |
| 2013-07-30 | Added str::char_offset_iter() and str::rev_char_offset_iter() | Marvin Löbel | -1/+1 |
| 2013-07-24 | Disallow non-comma-delimited arguments to fmt! and bytes! | Birunthan Mohanathas | -1/+1 |
| 2013-06-23 | vec: remove BaseIter implementation | Daniel Micay | -1/+1 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-09 | std: replace the str::each* fns/methods with byte iterators | Huon Wilson | -1/+2 |
| 2013-05-22 | syntax/ext: convert all AstBuilder methods to a uniform syntax. | Huon Wilson | -5/+5 |
| 2013-05-22 | syntax/ext: migrate build.rs functions to AstBuilder methods. | Huon Wilson | -6/+6 |
| 2013-05-22 | syntax/ext: modernise ext_ctxt to be CamelCase and use new. | Huon Wilson | -1/+1 |
| 2013-05-18 | Made bytes!() accept a list of string, integer or char literals | Marvin Löbel | -5/+50 |
| 2013-05-16 | Implement bytes! syntax extension | Sangeun Kim | -0/+28 |