| Age | Commit message (Expand) | Author | Lines |
| 2013-04-29 | test: Fix tests. | Patrick Walton | -189/+113 |
| 2013-04-29 | librustc: Remove the concept of modes from the compiler. | Patrick Walton | -1083/+557 |
| 2013-04-29 | librustc: Make `&fn` by-copy by default and remove the mode from `frame_addre... | Patrick Walton | -9/+4 |
| 2013-04-29 | test: Remove #[legacy_modes] from the test suite. | Patrick Walton | -51/+28 |
| 2013-04-29 | libfuzzer: De-mode the fuzzer. | Patrick Walton | -131/+170 |
| 2013-04-29 | librustc: Remove the legacy mode in the type visitor intrinsic. | Patrick Walton | -4/+9 |
| 2013-04-29 | librustc: Rename `reinterpret_cast` to `transmute_copy` and remove the intrinsic | Patrick Walton | -97/+79 |
| 2013-04-29 | librustc: Implement `reinterpret_cast` in terms of `transmute`. | Patrick Walton | -1/+84 |
| 2013-04-29 | librustc: Remove `ptr::addr_of`. | Patrick Walton | -300/+276 |
| 2013-04-29 | Revert "libcore: remove unnecessary deref" | Tim Chevalier | -1/+1 |
| 2013-04-29 | auto merge of #6110 : bjz/rust/numeric-traits, r=pcwalton | bors | -258/+380 |
| 2013-04-29 | core: Replace uses of 'drop' in task module with 'finally'. #5379 | Brian Anderson | -56/+21 |
| 2013-04-29 | auto merge of #6099 : danluu/rust/xfail_clone, r=catamorphism | bors | -31/+20 |
| 2013-04-29 | Revert "Merge Exponential and Hyperbolic traits" | Brendan Zabarauskas | -5/+11 |
| 2013-04-29 | Merge Exponential and Hyperbolic traits | Brendan Zabarauskas | -11/+5 |
| 2013-04-29 | auto merge of #6083 : jbclements/rust/parser-cleanup, r=jbclements | bors | -545/+889 |
| 2013-04-29 | Rename 'divisible_by' method to 'is_multiple_of', add tests for 'is_odd' and ... | Brendan Zabarauskas | -7/+69 |
| 2013-04-28 | add test case for enum disambiguation | John Clements | -0/+16 |
| 2013-04-28 | fix typo in librstpkg tests, allowed by old parser | John Clements | -1/+1 |
| 2013-04-29 | Implement Fractional for Ratio | Brendan Zabarauskas | -0/+18 |
| 2013-04-29 | Move appropriate functions out of Real and into separate Algebraic, Trigonome... | Brendan Zabarauskas | -251/+293 |
| 2013-04-29 | libstd: modify wrong shift width. | gifnksm | -1/+2 |
| 2013-04-29 | libstd: remove implicit copying of BigInt/BigUint | gifnksm | -20/+37 |
| 2013-04-28 | core: Use a better termination condition in os::mkdir_recursive | Tim Chevalier | -22/+79 |
| 2013-04-28 | core: Document core::path::GenericPath's trait methods | Tim Chevalier | -0/+40 |
| 2013-04-29 | Adds '--print-link-args' that outputs linker arguments that would be used | James Miller | -80/+114 |
| 2013-04-28 | make way for a new iter module | Daniel Micay | -517/+625 |
| 2013-04-28 | rustc: Suppress derived pattern-match-checking errors | Tim Chevalier | -79/+164 |
| 2013-04-29 | Add `--linker` option to pass flags to the linker | James Miller | -53/+70 |
| 2013-04-28 | auto merge of #5646 : Aatch/rust/unwind-fix, r=brson | bors | -41/+7 |
| 2013-04-28 | auto merge of #6092 : gifnksm/rust/impl-integer-bigint, r=graydon | bors | -144/+383 |
| 2013-04-28 | Updated spawn / loop thread to work with current syntax | Dan Luu | -9/+8 |
| 2013-04-28 | Remove test for any type -> match type, which doesn't seem to exist anymore | Dan Luu | -14/+0 |
| 2013-04-28 | Update old xfailing spawn/bind/join test | Dan Luu | -8/+12 |
| 2013-04-28 | parser comments | John Clements | -12/+82 |
| 2013-04-28 | s/one_tuple/trailing_comma (more accurate name) | John Clements | -3/+3 |
| 2013-04-28 | removed unneeded argument to parse_record | John Clements | -4/+5 |
| 2013-04-28 | s/parse_purity/parse_unsafety | John Clements | -3/+4 |
| 2013-04-28 | remove 3-line used-once function | John Clements | -8/+4 |
| 2013-04-28 | rename parse_instance_var to parse_name_and_ty | John Clements | -3/+3 |
| 2013-04-28 | remove obsolete semicolon from list of suggestions | John Clements | -1/+1 |
| 2013-04-28 | rename parse_single_class_item as well | John Clements | -5/+6 |
| 2013-04-28 | rename parse_class_item to parse_struct_decl_field | John Clements | -3/+4 |
| 2013-04-28 | needs_comma was always true | John Clements | -3/+2 |
| 2013-04-28 | fix for parsing x() as identifier pattern | John Clements | -17/+14 |
| 2013-04-28 | hard to read the implied double negative | John Clements | -4/+4 |
| 2013-04-28 | remove unused functions, fix tiny lexing bug | John Clements | -10/+1 |
| 2013-04-28 | remove unused flag to parse_local fn | John Clements | -5/+4 |
| 2013-04-28 | remove unused RESTRICT_NO_CALL_EXPRS restriction | John Clements | -7/+2 |
| 2013-04-28 | undo abstraction over whether to parse attrs in a block | John Clements | -32/+19 |