| Age | Commit message (Expand) | Author | Lines |
| 2014-03-30 | Removed deprecated functions `map` and `flat_map` for vectors and slices. | Marvin Löbel | -10/+12 |
| 2014-03-26 | syntax: Permit visibility on tuple fields | Alex Crichton | -2/+1 |
| 2014-03-22 | Migrate all users of opt_vec to owned_slice, delete opt_vec. | Huon Wilson | -5/+5 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -2/+0 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -2/+2 |
| 2014-03-12 | Suggest explicit lifetime parameter on some errors | Kiet Tran | -0/+21 |
| 2014-03-12 | Changed lists of lifetimes in ast and ty to use Vec instead of OptVec. | Felix S. Klock II | -3/+4 |
| 2014-03-07 | rename ast::ViewItemExternMod to ast::ViewItemExternCrate, and clean::ExternM... | Liigo Zhuang | -1/+1 |
| 2014-03-05 | Refactor and fix FIXME's in mtwt hygiene code | Edward Wang | -457/+1 |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -10/+13 |
| 2014-03-01 | libsyntax: Mechanically change `~[T]` to `Vec<T>` | Patrick Walton | -55/+55 |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -6/+6 |
| 2014-02-26 | Replace callee_id with information stored in method_map. | Eduard Burtescu | -6/+0 |
| 2014-02-25 | Use only the appropriate trait when looking up operator overloads. | Eduard Burtescu | -41/+19 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -2/+2 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -2/+19 |
| 2014-02-13 | auto merge of #12061 : pongad/rust/delorderable, r=cmr | bors | -3/+3 |
| 2014-02-13 | Removed num::Orderable | Michael Darakananda | -3/+3 |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -2/+2 |
| 2014-02-02 | libsyntax: Remove the `interner_get` function and all uses | Patrick Walton | -1/+4 |
| 2014-01-27 | Demote self to an (almost) regular argument and remove the env param. | Eduard Burtescu | -27/+14 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -2/+2 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -1/+1 |
| 2014-01-21 | [std::vec] Rename .last_opt() to .last(), drop the old .last() behavior | Simon Sapin | -2/+2 |
| 2014-01-21 | Remove unnecessary parentheses. | Huon Wilson | -5/+5 |
| 2014-01-17 | auto merge of #11585 : nikomatsakis/rust/issue-3511-rvalue-lifetimes, r=pcwalton | bors | -5/+1 |
| 2014-01-17 | syntax::ast: Remove/Recover tests | klutzy | -17/+19 |
| 2014-01-15 | Issue #3511 - Rationalize temporary lifetimes. | Niko Matsakis | -5/+1 |
| 2014-01-13 | librustc: Remove `@` pointer patterns from the language | Patrick Walton | -1/+10 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -1/+1 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -84/+83 |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -41/+14 |
| 2014-01-03 | librustc: Remove `@mut` support from the parser | Patrick Walton | -6/+6 |
| 2014-01-03 | libsyntax: Remove an unnecessary `@mut io::Reader` | Patrick Walton | -8/+10 |
| 2014-01-03 | libsyntax: De-`@mut` `SCTable` | Patrick Walton | -10/+14 |
| 2014-01-03 | libsyntax: De-`@mut` `SCTable::rename_memo` | Patrick Walton | -4/+5 |
| 2014-01-03 | libsyntax: De-`@mut` `SCTable::mark_memo` | Patrick Walton | -4/+5 |
| 2014-01-03 | libsyntax: De-`@mut` `SCTable::table` | Patrick Walton | -13/+36 |
| 2014-01-03 | libsyntax: De-`@mut` the resolve table | Patrick Walton | -5/+8 |
| 2014-01-01 | Remove `extern mod foo (name="bar")` syntax, closes #9543 | Florian Hahn | -1/+1 |
| 2013-12-12 | Remove fk_anon | Seo Sanghyeon | -1/+1 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -7/+7 |
| 2013-12-01 | auto merge of #10750 : Blei/rust/no-at-struct-field, r=alexcrichton | bors | -1/+1 |
| 2013-12-01 | ast: Remove one `@` and fix the fallout | Philipp Brüschweiler | -1/+1 |
| 2013-12-01 | Box Block, fn_decl, variant and Ty in the AST, as they were inflating critica... | Eduard Burtescu | -22/+11 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -8/+8 |
| 2013-11-26 | auto merge of #10670 : eddyb/rust/node-u32, r=alexcrichton | bors | -15/+9 |
| 2013-11-27 | Shink NodeId, CrateNum, Name and Mrk down to 32 bits on x64. | Eduard Burtescu | -15/+9 |
| 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 | -1/+1 |