| Age | Commit message (Expand) | Author | Lines |
| 2013-02-21 | Remove the last bits of structural records from tests/rustc/rusti/rustpkg. | Luqman Aden | -123/+86 |
| 2013-02-20 | librustc: Separate most trait bounds with '+'. rs=plussing | Patrick Walton | -28/+28 |
| 2013-02-20 | auto merge of #5046 : sanxiyn/rust/struct-match, r=catamorphism | bors | -0/+11 |
| 2013-02-20 | Check type when struct is matched against enum-like pattern | Seo Sanghyeon | -0/+11 |
| 2013-02-20 | fix ICE after incorrect number of args in calls | Kang Seonghoon | -0/+14 |
| 2013-02-19 | add missing typecheck for const pattern match arm | Jeong YunWon | -0/+17 |
| 2013-02-17 | Removed more capture claueses. | Seth Pink | -1/+1 |
| 2013-02-16 | Parse (and discard) lifetime declarations on function types | Niko Matsakis | -14/+14 |
| 2013-02-16 | Permit lifetimes to appear in type parameter lists and after `&`. Lifetimes in | Niko Matsakis | -9/+12 |
| 2013-02-15 | librustc: Stop parsing `impl Type : Trait` and fix several declarations that ... | Patrick Walton | -3/+3 |
| 2013-02-15 | tests/tutorials: Get rid of `move`. | Luqman Aden | -32/+32 |
| 2013-02-14 | libcore: Remove ptr::mut_addr_of since &mut is coerced to *mut | Luqman Aden | -4/+4 |
| 2013-02-14 | auto merge of #4934 : nickdesaulniers/rust/issue4524cleanup, r=brson | bors | -2/+2 |
| 2013-02-14 | librustc: Replace `impl Type : Trait` with `impl Trait for Type`. rs=implflip... | Patrick Walton | -195/+195 |
| 2013-02-14 | Remove all final references to die! | Nick Desaulniers | -2/+2 |
| 2013-02-14 | libcore: Move the numeric operations out of Num. r=brson | Patrick Walton | -1/+1 |
| 2013-02-13 | Remove die!, raplace invocations with fail! Issue #4524 pt 3 | Nick Desaulniers | -59/+59 |
| 2013-02-13 | RIMOV core::vec | Ben Striegel | -2/+2 |
| 2013-02-12 | Adjust borrow checker algorithm to address #4856 unsoundness, | Niko Matsakis | -66/+371 |
| 2013-02-09 | auto merge of #4861 : sethpink/rust/incoming, r=catamorphism | bors | -8/+0 |
| 2013-02-09 | Issue #4830 fix | Seth Pink | -8/+0 |
| 2013-02-08 | Fix subtle error in caching during kind computation that could cause linear | Niko Matsakis | -46/+79 |
| 2013-02-07 | auto merge of #4803 : alexcrichton/rust/fix-unused-imports, r=graydon | bors | -8/+24 |
| 2013-02-07 | Make ~fn non-copyable, make &fn copyable, split barefn/closure types, | Niko Matsakis | -73/+33 |
| 2013-02-07 | auto merge of #4816 : lifthrasiir/rust/float-literal, r=graydon | bors | -0/+34 |
| 2013-02-06 | got rid of last empty lines | Kang Seonghoon | -2/+0 |
| 2013-02-06 | libsyntax: no binary/hex float literals | Kang Seonghoon | -0/+36 |
| 2013-02-05 | testsuite: Add test for #4523 | Tim Chevalier | -0/+17 |
| 2013-02-05 | Don't warn when imported traits are indeed used | Alex Crichton | -0/+6 |
| 2013-02-05 | Fix some bugs with -W unused-imports | Alex Crichton | -8/+18 |
| 2013-02-04 | auto merge of #4747 : sanxiyn/rust/integral-type, r=graydon | bors | -0/+3 |
| 2013-02-04 | Let type_is_integral return false for bool type | Seo Sanghyeon | -0/+3 |
| 2013-02-03 | core: convert ToStr::to_str to take explicit &self | Erick Tryzelaar | -3/+3 |
| 2013-02-03 | rename map -> oldmap and mark it as deprecated | Daniel Micay | -3/+3 |
| 2013-02-03 | update compile-fail/map-types.rs to use hashmap | Daniel Micay | -8/+6 |
| 2013-02-01 | Remove fail keyword from lexer & parser and clean up remaining calls to | Nick Desaulniers | -5/+5 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -2/+2 |
| 2013-01-31 | Replace most invocations of fail keyword with die! macro | Nick Desaulniers | -60/+60 |
| 2013-01-31 | Finalize moves-based-on-type implementation. | Niko Matsakis | -297/+236 |
| 2013-01-30 | librustc: Change `self` as a type to `Self` everywhere. r=brson | Patrick Walton | -6/+6 |
| 2013-01-30 | test: fix compile-fail tests somehow missed from local 'make check', r=burnin... | Graydon Hoare | -3/+3 |
| 2013-01-30 | test: De-export aux, bench, compile-fail, and run-fail. rs=deexporting | Patrick Walton | -181/+76 |
| 2013-01-30 | Remove oldcomm from the test suite | Brian Anderson | -8/+7 |
| 2013-01-29 | librustc: De-implicit-self the visitor. r=graydon | Patrick Walton | -1/+1 |
| 2013-01-29 | librustc: Disallow trait bounds in types, enumerations, and structure definit... | Patrick Walton | -1/+1 |
| 2013-01-29 | libstd: Remove "dual impls" from the language and enforce coherence rules. r=... | Patrick Walton | -4/+6 |
| 2013-01-28 | testsuite: Remove structural records from remaining compile-fail tests | Tim Chevalier | -15/+14 |
| 2013-01-28 | Rewrite the coercion code to be more readable, more sound, and to reborrow when | Niko Matsakis | -12/+28 |
| 2013-01-28 | Integrate vec patterns into borrow checker. | Niko Matsakis | -6/+37 |
| 2013-01-25 | Fix Option camel case in a compile-fail test | Tyler Bindon | -3/+3 |