| Age | Commit message (Expand) | Author | Lines |
| 2015-05-19 | Auto merge of #24333 - arielb1:implement-rfc401, r=nrc | bors | -60/+398 |
| 2015-05-19 | Make float -> int casts actually work | Ariel Ben-Yehuda | -1/+0 |
| 2015-05-19 | Address review commets | Ariel Ben-Yehuda | -16/+22 |
| 2015-05-19 | fix conflicts | Ariel Ben-Yehuda | -6/+11 |
| 2015-05-19 | Fix test fallout, and add some rather comprehensive tests. | Ariel Ben-Yehuda | -35/+359 |
| 2015-05-19 | Overhaul cast semantics and make them follow RFC401 | Ariel Ben-Yehuda | -7/+11 |
| 2015-05-19 | Auto merge of #25550 - sfackler:derive-debug-unsized, r=alexcrichton | bors | -0/+14 |
| 2015-05-19 | Auto merge of #25441 - alexcrichton:debug-panic-neg, r=aturon | bors | -0/+21 |
| 2015-05-18 | std: Make abs() panic on overflow in debug mode | Alex Crichton | -0/+21 |
| 2015-05-18 | Auto merge of #25501 - nham:E0072_E0073, r=alexcrichton | bors | -2/+2 |
| 2015-05-17 | Auto merge of #25527 - inrustwetrust:const-not-overflow, r=alexcrichton | bors | -0/+21 |
| 2015-05-17 | Make #[derive(Debug)] work with unsized fields | Steven Fackler | -0/+14 |
| 2015-05-17 | Add error explanations for E0072, E0073, E0121, E0178, E0371, E0372. | Nick Hamann | -2/+2 |
| 2015-05-17 | Auto merge of #25524 - Manishearth:unsafe_derive, r=cmr | bors | -0/+2 |
| 2015-05-17 | Allow #[derive()] to generate unsafe methods | Manish Goregaokar | -0/+2 |
| 2015-05-17 | Fix compile-time integer overflow when using ! on unsigned values | inrustwetrust | -0/+21 |
| 2015-05-17 | Rollup merge of #25503 - brson:betafix, r=cmr | Manish Goregaokar | -2/+0 |
| 2015-05-17 | Rollup merge of #25476 - rpjohnst:master, r=huonw | Manish Goregaokar | -0/+21 |
| 2015-05-17 | Auto merge of #25387 - eddyb:syn-file-loader, r=nikomatsakis | bors | -4/+4 |
| 2015-05-17 | test/compile-fail: fix expected error message for non-UTF8 source. | Eduard Burtescu | -1/+1 |
| 2015-05-16 | Make a test compatible with the beta channel | Brian Anderson | -2/+0 |
| 2015-05-16 | Auto merge of #25485 - XuefengWu:24968_err_msg_parse_self_type_2, r=nrc | bors | -1/+16 |
| 2015-05-16 | fix error message in test | Xuefeng Wu | -1/+1 |
| 2015-05-16 | Auto merge of #25444 - nikomatsakis:macro-tt-fix, r=pnkfelix | bors | -0/+95 |
| 2015-05-16 | Add test for two sequence repetitions in a row | Niko Matsakis | -0/+18 |
| 2015-05-16 | Auto merge of #25487 - P1start:extern-crate-unexpected-error, r=huonw | bors | -1/+12 |
| 2015-05-16 | Clarify the error message for malformed `extern crate` statements | P1start | -1/+12 |
| 2015-05-16 | fix trait capitalise typo in test file | Xuefeng Wu | -1/+1 |
| 2015-05-16 | fix typo for copyright year and trait capitalise | Xuefeng Wu | -0/+15 |
| 2015-05-15 | Test that associated types are not required as type parameters | Russell Johnston | -0/+21 |
| 2015-05-16 | Fix the spans of `move` closures | P1start | -0/+17 |
| 2015-05-15 | Permit token trees, identifiers, and blocks to be following by | Niko Matsakis | -0/+77 |
| 2015-05-15 | syntax: Unquoting some statements requires trailing semicolons | Erick Tryzelaar | -0/+6 |
| 2015-05-15 | Auto merge of #25400 - nrc:save-api, r=huonw | bors | -43/+96 |
| 2015-05-15 | Auto merge of #25399 - kballard:crate-attributes-cfg_attr, r=alexcrichton | bors | -0/+31 |
| 2015-05-14 | Auto merge of #25403 - Manishearth:rollup, r=Manishearth | bors | -2/+2 |
| 2015-05-14 | Auto merge of #24920 - alexcrichton:duration, r=aturon | bors | -32/+32 |
| 2015-05-14 | Move configuration 1 phase before crate metadata collection | Kevin Ballard | -0/+31 |
| 2015-05-14 | Rollup merge of #25398 - nham:E0066_E0069, r=huonw | Manish Goregaokar | -2/+2 |
| 2015-05-14 | save-analysis: fix a bracket counting bug | Nick Cameron | -0/+12 |
| 2015-05-14 | save-analysis: update the smoke test | Nick Cameron | -43/+84 |
| 2015-05-14 | Auto merge of #25338 - tamird:unignore-stage-tests, r=alexcrichton | bors | -28/+0 |
| 2015-05-13 | Add error explanations for E0066 and E0069. | Nick Hamann | -2/+2 |
| 2015-05-13 | std: Redesign Duration, implementing RFC 1040 | Alex Crichton | -32/+32 |
| 2015-05-13 | Fix ICE that occurs when an associated const is ambiguous. | Sean Patrick Santos | -74/+106 |
| 2015-05-13 | Unignore some tests in stage1 | Tamir Duberstein | -26/+0 |
| 2015-05-13 | Allow `T::C` syntax in match patterns to refer to trait-assosociated constants. | Sean Patrick Santos | -0/+4 |
| 2015-05-14 | syntax: refactor (Span)Handler and ParseSess constructors to be methods. | Eduard Burtescu | -3/+3 |
| 2015-05-13 | Remove errant line | Tamir Duberstein | -2/+0 |
| 2015-05-13 | Auto merge of #25344 - arielb1:fresh-float, r=nikomatsakis | bors | -0/+74 |