| Age | Commit message (Expand) | Author | Lines |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -2/+1 |
| 2014-02-08 | syntax: convert the lexer to use Option<char> over transmute(-1). | Huon Wilson | -22/+22 |
| 2014-02-07 | Removed @self and @Trait. | Eduard Burtescu | -18/+18 |
| 2014-02-03 | syntax: Remove io_error usage | Alex Crichton | -1/+2 |
| 2014-02-02 | libsyntax: De-`@str` pathnames | Patrick Walton | -1/+1 |
| 2014-02-02 | librustc: Stop using `@str` for source. | Patrick Walton | -1/+1 |
| 2014-02-02 | libsyntax: De-`@str` literal strings in the AST | Patrick Walton | -1/+0 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -2/+2 |
| 2014-01-21 | [std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr... | Simon Sapin | -1/+1 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -29/+29 |
| 2014-01-03 | librustc: De-`@mut` the span handler | Patrick Walton | -1/+1 |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader`, `TtReader`, and `reader` | Patrick Walton | -11/+11 |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::curr` | Patrick Walton | -22/+23 |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::col` | Patrick Walton | -2/+2 |
| 2014-01-03 | libsyntax: De-`@mut` `StringReader::last_pos` | Patrick Walton | -5/+9 |
| 2014-01-01 | syntax::diagnostic: Remove unnecessary traits | klutzy | -1/+1 |
| 2013-12-04 | std::str: remove from_utf8. | Huon Wilson | -1/+1 |
| 2013-11-26 | libsyntax: Remove all non-`proc` `do` syntax. | Patrick Walton | -5/+3 |
| 2013-11-26 | Removed unneccessary `_iter` suffixes from various APIs | Marvin Löbel | -4/+4 |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -1/+1 |
| 2013-10-28 | Remove the extension traits for Readers/Writers | Alex Crichton | -2/+1 |
| 2013-10-24 | Remove even more of std::io | Alex Crichton | -3/+4 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -16/+16 |
| 2013-09-30 | syntax: Remove usage of fmt! | Alex Crichton | -16/+16 |
| 2013-09-25 | rustdoc: Improve comment stripping | Alex Crichton | -15/+40 |
| 2013-09-20 | Implement a web backend for rustdoc_ng | Alex Crichton | -3/+1 |
| 2013-09-05 | Rename str::from_bytes to str::from_utf8, closes #8985 | Florian Hahn | -1/+1 |
| 2013-08-11 | libsyntax: Update from `@Object` to `@mut Object` as required | Niko Matsakis | -2/+2 |
| 2013-08-10 | std: Rename Iterator.transform -> .map | Erick Tryzelaar | -1/+1 |
| 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-20 | syntax: modernise attribute handling in syntax::attr. | Huon Wilson | -3/+3 |
| 2013-07-17 | librustc: Remove all uses of "copy". | Patrick Walton | -1/+3 |
| 2013-06-28 | librustc: Remove the broken overloaded assign-ops from the language. | Patrick Walton | -3/+3 |
| 2013-06-25 | great renaming propagation: syntax | Corey Richardson | -5/+3 |
| 2013-06-16 | Do not strip leading whitespace when parsing doc comments. | SiegeLord | -23/+65 |
| 2013-06-16 | auto merge of #7123 : huonw/rust/more-str, r=thestinger | bors | -8/+6 |
| 2013-06-15 | auto merge of #7114 : pnkfelix/rust/issue3961-fix-whitespace-detection, r=brson | bors | -14/+23 |
| 2013-06-16 | std: convert str::{map,levdistance,subslice_offset} to methods. | Huon Wilson | -8/+6 |
| 2013-06-14 | add IteratorUtil to the prelude | Daniel Micay | -1/+0 |
| 2013-06-14 | fixed code to placate new restrictions on form of function/method invocations. | Felix S. Klock II | -1/+1 |
| 2013-06-13 | Fix #3961 : use char range methods instead of byte offsets to detect whitespace. | Felix S. Klock II | -14/+23 |
| 2013-06-13 | Use @str instead of @~str in libsyntax and librustc. Fixes #5048. | Huon Wilson | -2/+2 |
| 2013-06-10 | std: remove str::{connect,concat}*. | Huon Wilson | -1/+1 |
| 2013-06-10 | std: convert str::reserve* to methods, and methodise str::push_*. | Huon Wilson | -3/+3 |
| 2013-06-10 | std: remove str::{len, slice, is_empty} in favour of methods. | Huon Wilson | -2/+2 |
| 2013-06-08 | auto merge of #7004 : dotdash/rust/allocs, r=thestinger | bors | -4/+5 |
| 2013-06-09 | remove unused import warnings | Huon Wilson | -1/+0 |
| 2013-06-09 | std: remove each_char* fns and methods from str, replaced by iterators. | Huon Wilson | -2/+3 |
| 2013-06-08 | Lexer: Fix offset handling in get_str_from() | Björn Steinbrink | -1/+1 |