| Age | Commit message (Expand) | Author | Lines |
| 2014-05-27 | Rename PatUniq to PatBox. Fixes part of #13910. | Ahmed Charles | -1/+1 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -9/+9 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -6/+6 |
| 2014-05-23 | syntax: Clean out obsolete syntax parsing | Alex Crichton | -0/+1 |
| 2014-05-14 | Removed unnecessary arguments for walk_* functions | Michael Darakananda | -4/+3 |
| 2014-05-13 | syntax: Print suffixed token literals correctly | Alex Crichton | -0/+3 |
| 2014-05-13 | syntax: Fix printing INT64_MIN | Alex Crichton | -5/+16 |
| 2014-05-08 | libsyntax: Remove uses of `~str` from libsyntax, and fix fallout | Patrick Walton | -13/+17 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -1/+1 |
| 2014-05-01 | auto merge of #13724 : nikomatsakis/rust/expr-use-visitor, r=pnkfelix | bors | -1/+24 |
| 2014-04-26 | syntax: ViewItemUse no longer contains multiple view paths. | Kang Seonghoon | -12/+10 |
| 2014-04-24 | auto merge of #13671 : dcrewi/rust/lint-directives-on-use-items, r=alexcrichton | bors | -2/+10 |
| 2014-04-24 | Pre-step towards issue #12624 and others: Introduce ExprUseVisitor, remove the | Niko Matsakis | -1/+24 |
| 2014-04-22 | Apply lint attrs to individual "use" declarations | David Creswick | -2/+10 |
| 2014-04-22 | add support for quadruple precision floating point | Daniel Micay | -1/+1 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -1/+1 |
| 2014-04-13 | libsyntax: update helper to stringify TyU* and TyI* to take into account havi... | Kevin Butler | -14/+30 |
| 2014-04-10 | auto merge of #13440 : huonw/rust/strbuf, r=alexcrichton | bors | -2/+3 |
| 2014-04-10 | Renamed ast::Purity to ast::FnStyle and ast::ImpureFn to ast::NormalFn and up... | Kasey Carrothers | -1/+1 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -2/+3 |
| 2014-04-08 | Register new snapshots | Alex Crichton | -1/+1 |
| 2014-03-31 | syntax: Switch field privacy as necessary | Alex Crichton | -5/+5 |
| 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 |