| Age | Commit message (Expand) | Author | Lines |
| 2014-07-09 | syntax: doc comments all the things | Corey Richardson | -11/+11 |
| 2014-07-08 | std: Rename the `ToStr` trait to `ToString`, and `to_str` to `to_string`. | Richo Healey | -23/+23 |
| 2014-06-26 | Remove unnecessary to_string calls | Piotr Jawniak | -24/+18 |
| 2014-06-14 | rustc: Obsolete the `@` syntax entirely | Alex Crichton | -1/+1 |
| 2014-06-11 | syntax: Move the AST from @T to Gc<T> | Alex Crichton | -55/+56 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -1/+1 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -15/+15 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -7/+7 |
| 2014-05-21 | rustc: improve error messages from wrong --pretty flowgraph use. | Huon Wilson | -4/+10 |
| 2014-05-15 | Updates with core::fmt changes | Alex Crichton | -1/+1 |
| 2014-05-15 | Add `EntryPat` and `NodePat` variants to ast_map. | Felix S. Klock II | -1/+11 |
| 2014-05-08 | libsyntax: Remove uses of `~str` from libsyntax, and fix fallout | Patrick Walton | -22/+29 |
| 2014-04-23 | syntax: fix de-@rooting fallout | Flavio Percoco | -6/+7 |
| 2014-04-23 | Check for unsized types in enums. | Nick Cameron | -0/+7 |
| 2014-04-23 | Support unsized types with the `type` keyword | Nick Cameron | -1/+19 |
| 2014-04-17 | Extended `syntax::{fold, ast_map}` to include lifetimes. | Felix S. Klock II | -0/+25 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -3/+4 |
| 2014-04-03 | auto merge of #13237 : alexcrichton/rust/private-tuple-structs, r=brson | bors | -1/+1 |
| 2014-04-03 | syntax: Remove AbiSet, use one Abi | Alex Crichton | -7/+7 |
| 2014-03-31 | Switch some tuple structs to pub fields | Alex Crichton | -1/+1 |
| 2014-03-31 | syntax: Switch field privacy as necessary | Alex Crichton | -1/+1 |
| 2014-03-28 | Rename Pod into Copy | Flavio Percoco | -1/+1 |
| 2014-03-22 | syntax: Fix fallout of removing get() | Alex Crichton | -7/+6 |
| 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-20 | rename std::vec -> std::slice | Daniel Micay | -3/+3 |
| 2014-03-15 | log: Introduce liblog, the old std::logging | Alex Crichton | -2/+1 |
| 2014-03-01 | libsyntax: Fix errors arising from the automated `~[T]` conversion | Patrick Walton | -1/+6 |
| 2014-03-01 | libsyntax: Mechanically change `~[T]` to `Vec<T>` | Patrick Walton | -4/+4 |
| 2014-02-26 | Replace callee_id with information stored in method_map. | Eduard Burtescu | -13/+0 |
| 2014-02-23 | Remove all ToStr impls, add Show impls | Alex Crichton | -3/+5 |
| 2014-02-14 | Refactored ast_map and friends, mainly to have Paths without storing them. | Eduard Burtescu | -336/+442 |
| 2014-02-13 | Replace `crate` usage with `krate` | Flavio Percoco | -2/+2 |
| 2014-02-07 | moved collections from libextra into libcollections | HeroesGrave | -1/+1 |
| 2014-02-02 | libsyntax: Remove `@str` from the interner | Patrick Walton | -8/+18 |
| 2014-01-27 | Demote self to an (almost) regular argument and remove the env param. | Eduard Burtescu | -21/+6 |
| 2014-01-26 | Removed all instances of XXX in preparation for relaxing of FIXME rule | Salem Talha | -1/+1 |
| 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-19 | syntax: convert ast_map to use a SmallIntMap. | Huon Wilson | -37/+79 |
| 2014-01-13 | librustc: Remove `@` pointer patterns from the language | Patrick Walton | -2/+6 |
| 2014-01-09 | libsyntax: Renamed types, traits and enum variants to CamelCase. | Eduard Burtescu | -165/+158 |
| 2014-01-06 | Disowned the Visitor. | Eduard Burtescu | -215/+150 |
| 2014-01-03 | librustc: Remove `@mut` support from the typechecker and borrow checker | Patrick Walton | -1/+1 |
| 2014-01-03 | libsyntax: De-`@mut` (and de-`@`) the AST mapping context | Patrick Walton | -4/+4 |
| 2014-01-03 | libsyntax: De-`@mut` the path in the AST mapping context | Patrick Walton | -12/+25 |
| 2014-01-03 | librustc: De-`@mut` the AST map | Patrick Walton | -33/+61 |
| 2014-01-03 | librustc: De-`@mut` the span handler | Patrick Walton | -3/+3 |
| 2014-01-01 | auto merge of #11255 : klutzy/rust/small-cleanup, r=pcwalton | bors | -4/+4 |
| 2014-01-02 | syntax: expand impl_pretty_name to handle more cases. | Huon Wilson | -16/+61 |