| Age | Commit message (Expand) | Author | Lines |
| 2013-03-13 | Remove `++` mode from the compiler (it is parsed as `+` mode) | Niko Matsakis | -2/+2 |
| 2013-03-11 | librustc: Replace all uses of `fn()` with `&fn()`. rs=defun | Patrick Walton | -1/+1 |
| 2013-03-11 | Implement vector destructuring from tail | Seo Sanghyeon | -12/+12 |
| 2013-03-08 | rustc: Remove uses of DVec | Alex Crichton | -5/+2 |
| 2013-03-06 | Add manual &self/ and &static/ and /&self declarations that | Niko Matsakis | -2/+2 |
| 2013-03-04 | Remove unused imports throughout src/ | Alex Crichton | -15/+1 |
| 2013-03-02 | librustc: Stop parsing `fn@`, `fn~`, and `fn&` | Patrick Walton | -7/+5 |
| 2013-03-02 | librustc: Remove `fn@`, `fn~`, and `fn&` from librustc. rs=defun | Patrick Walton | -1/+1 |
| 2013-03-01 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -7/+28 |
| 2013-03-01 | Merge remote branch 'nmatsakis/issue-4808-representation-of-extern-fn' into i... | Patrick Walton | -7/+28 |
| 2013-03-01 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -8/+10 |
| 2013-02-28 | Fix implicit leaks of imports throughout libraries | Alex Crichton | -0/+2 |
| 2013-02-28 | Change bare functions so that they are represented by a single pointer. | Niko Matsakis | -7/+28 |
| 2013-02-28 | librustc: Mark all type implementations public. rs=impl-publicity | Patrick Walton | -8/+8 |
| 2013-02-27 | Merge remote-tracking branch 'remotes/origin/incoming' into incoming | Erick Tryzelaar | -1/+1 |
| 2013-02-27 | librustc: Forbid `pub` or `priv` before trait implementations | Patrick Walton | -1/+1 |
| 2013-02-25 | libsyntax: progress on making syntax::visit vecs_implicitly_copyable-free | Erick Tryzelaar | -8/+8 |
| 2013-02-25 | libsyntax: convert visit to pass ty_params by reference | Erick Tryzelaar | -5/+5 |
| 2013-02-22 | De-implicit-self librustc | Ben Striegel | -4/+4 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -1/+1 |
| 2013-02-20 | librustc: Get rid of structural records save for front/test.rs. | Luqman Aden | -13/+15 |
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ... | Patrick Walton | -1/+1 |
| 2013-02-15 | librustc: Get rid of `move`. | Luqman Aden | -7/+7 |
| 2013-02-14 | rustc: De-XXX resolve and borrowck... | Tim Chevalier | -1/+1 |
| 2013-02-12 | Adjust borrow checker algorithm to address #4856 unsoundness, | Niko Matsakis | -179/+205 |
| 2013-02-08 | oldmap: get rid of legacy _ref suffixes | Daniel Micay | -6/+6 |
| 2013-02-07 | librustc: Lots of de-muting. rs=demuting | Patrick Walton | -141/+172 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -23/+37 |
| 2013-02-05 | oldmap: use &K instead of K in find and get | Patrick Walton | -20/+20 |
| 2013-02-05 | Revert "oldmap: use &K instead of K in find and get" | Graydon Hoare | -20/+20 |
| 2013-02-03 | oldmap: use &K instead of K in find and get | Daniel Micay | -20/+20 |
| 2013-02-03 | oldmap: get rid of the legacy contains_key method | Daniel Micay | -6/+6 |
| 2013-02-03 | rename map -> oldmap and mark it as deprecated | Daniel Micay | -3/+3 |
| 2013-01-31 | rustc: Stamp out XXXes in middle (comments only) | Tim Chevalier | -1/+1 |
| 2013-01-31 | Finalize moves-based-on-type implementation. | Niko Matsakis | -235/+266 |
| 2013-01-29 | librustc: De-export front, borrowck, and typeck/check. rs=deexporting | Patrick Walton | -108/+52 |
| 2013-01-29 | libstd: Remove "dual impls" from the language and enforce coherence rules. r=... | Patrick Walton | -41/+44 |
| 2013-01-28 | loan: Track whether or not the current path owns the data being | Niko Matsakis | -56/+128 |
| 2013-01-28 | Integrate vec patterns into borrow checker. | Niko Matsakis | -2/+48 |
| 2013-01-25 | Fix Option camel case in comments | Tyler Bindon | -7/+7 |
| 2013-01-24 | librustc: Allow `&mut` to be loaned; allow `self` to be loaned; make `&mut` l... | Patrick Walton | -17/+57 |
| 2013-01-24 | librustc: Disallow `&mut` loans from overlapping with any other loans | Patrick Walton | -6/+5 |
| 2013-01-23 | rename send_map to hashmap | Daniel Micay | -1/+1 |
| 2013-01-22 | migrate gather_loans.rs to LinearSet | Daniel Micay | -5/+5 |
| 2013-01-22 | long line police | Graydon Hoare | -8/+8 |
| 2013-01-22 | Make borrowck's notion of scopes consistent with trans's notion of scopes | Tim Chevalier | -2/+38 |
| 2013-01-17 | librustc: Implement write guards for borrowing `@mut` to `&` or `&mut`. r=nma... | Patrick Walton | -59/+80 |
| 2013-01-14 | syntax/rustc: Eliminate some bad copies | Tim Chevalier | -0/+3 |
| 2013-01-09 | A collection of refactorings that I found it hard/tiresome to divide: | Niko Matsakis | -11/+10 |
| 2013-01-08 | librustc: Make unqualified identifier searches terminate at the nearest modul... | Patrick Walton | -8/+46 |