| Age | Commit message (Expand) | Author | Lines |
| 2014-05-12 | Remove a workaround for deriving(Clone) on unit structs. | Cameron Zwarich | -24/+3 |
| 2014-05-12 | librustc: Remove all uses of `~str` from librustc. | Patrick Walton | -43/+56 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -10/+13 |
| 2014-04-24 | Pre-step towards issue #12624 and others: Introduce ExprUseVisitor, remove the | Niko Matsakis | -729/+182 |
| 2014-04-24 | auto merge of #13559 : FlaPer87/rust/remove-special-root, r=nikomatsakis | bors | -193/+42 |
| 2014-04-23 | rustc: Tweak the borrow on closure invocations | Alex Crichton | -1/+30 |
| 2014-04-23 | rustc: fix de-@rooting fallout | Flavio Percoco | -1/+0 |
| 2014-04-23 | rustc: Remove moved_variables_set | Flavio Percoco | -3/+0 |
| 2014-04-23 | Treat @T like ~T in borrowck | Flavio Percoco | -69/+9 |
| 2014-04-23 | rustc: Remove obsolete error_out_of_root_scope variant | Flavio Percoco | -17/+0 |
| 2014-04-23 | rustc: Remove root_map entirely | Flavio Percoco | -48/+33 |
| 2014-04-23 | rustc: Remove root_map usage from lifetime | Flavio Percoco | -57/+2 |
| 2014-04-22 | rustc: de-@ mem_categorization. | Eduard Burtescu | -81/+81 |
| 2014-04-22 | rustc: de-@ borrowck. | Eduard Burtescu | -160/+137 |
| 2014-04-22 | rustc: de-@ some RefCell's. | Eduard Burtescu | -18/+13 |
| 2014-04-22 | rustc: make MemCategorizationContext immutable. | Eduard Burtescu | -8/+7 |
| 2014-04-22 | rustc: de-@ ty::AutoAdjustment. | Eduard Burtescu | -5/+5 |
| 2014-04-22 | rustc: move the method and vtable maps into ty::ctxt. | Eduard Burtescu | -32/+13 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -1/+1 |
| 2014-04-16 | auto merge of #13418 : ktt3ja/rust/move-out-of, r=brson | bors | -37/+251 |
| 2014-04-11 | rustc: remove proc -> once || coercions. | Eduard Burtescu | -10/+1 |
| 2014-04-11 | rustc: fix fallout from removing ast::Sigil and use ty::TraitStore in ty::Clo... | Eduard Burtescu | -1/+1 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -5/+6 |
| 2014-04-09 | Collect move errors before reporting | Kiet Tran | -37/+251 |
| 2014-04-08 | rustc: Prevent repeated moves out of proc upvars | Alex Crichton | -1/+2 |
| 2014-04-02 | middle: borrowck: remove dead code | Corey Richardson | -15/+1 |
| 2014-03-31 | rustc: Switch field privacy as necessary | Alex Crichton | -24/+24 |
| 2014-03-31 | vec: convert `append` and `append_one` to methods | Daniel Micay | -6/+1 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 |
| 2014-03-25 | auto merge of #13083 : FlaPer87/rust/issue-13005-borrow-unsafe-static, r=niko... | bors | -74/+93 |
| 2014-03-24 | rustc: Completely forbid borrows of unsafe statics | Flavio Percoco | -74/+93 |
| 2014-03-23 | use TotalEq for HashMap | Daniel Micay | -3/+3 |
| 2014-03-22 | rustc: Remove all usage of manual deref() | Alex Crichton | -3/+3 |
| 2014-03-22 | rustc: Fix fallout of removing get() | Alex Crichton | -162/+88 |
| 2014-03-21 | syntax: make OptVec immutable. | Huon Wilson | -5/+3 |
| 2014-03-20 | Removing imports of std::vec_ng::Vec | Alex Crichton | -5/+0 |
| 2014-03-20 | auto merge of #12686 : FlaPer87/rust/shared, r=nikomatsakis | bors | -52/+95 |
| 2014-03-20 | Forbid borrow of static items with unsafe interior | Flavio Percoco | -28/+40 |
| 2014-03-20 | Gather loans for static items | Flavio Percoco | -28/+59 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -7/+7 |
| 2014-03-17 | auto merge of #12742 : FlaPer87/rust/issue-11411-static-mut-slice, r=nikomats... | bors | -0/+3 |
| 2014-03-17 | De-@ move maps and rework parts of trans. | Eduard Burtescu | -21/+12 |
| 2014-03-17 | De-@ gather_loans. | Eduard Burtescu | -15/+10 |
| 2014-03-17 | De-@ ty::ctxt usage. | Eduard Burtescu | -38/+38 |
| 2014-03-13 | Region + borrow checker support and tests for overloaded autoderef. | Eduard Burtescu | -2/+37 |
| 2014-03-13 | Implement automatic overloaded dereference. | Eduard Burtescu | -8/+12 |
| 2014-03-13 | Remove Rc's borrow method to avoid conflicts with RefCell's borrow in Rc<RefC... | Eduard Burtescu | -3/+3 |
| 2014-03-09 | borrowck: classify expressions as assignees, uses or both | Edward Wang | -33/+55 |
| 2014-03-08 | librustc: Fix up fallout from the automatic conversion. | Felix S. Klock II | -16/+23 |
| 2014-03-08 | librustc: Automatically change uses of `~[T]` to `Vec<T>` in rustc. | Patrick Walton | -20/+19 |