| Age | Commit message (Expand) | Author | Lines |
| 2015-03-03 | fix test generic-extern-mangle.rs | Niko Matsakis | -1/+1 |
| 2015-03-03 | fix Iter::rposition for new arith-overflow checking. | Felix S. Klock II | -2/+3 |
| 2015-03-03 | Added `OverflowingOps` trait to core::num::wrapping. | Felix S. Klock II | -0/+148 |
| 2015-03-03 | Implement parse_opt_bool better | James Miller | -2/+15 |
| 2015-03-03 | Add `core::num::wrapping` and fix overflow errors. | James Miller | -95/+286 |
| 2015-03-03 | rustc: implement arithmetic overflow checking | Corey Richardson | -7/+203 |
| 2015-03-03 | Make `test/run-pass/backtrace.rs` more robust about own host environment. | Felix S. Klock II | -1/+3 |
| 2015-03-03 | Avoid ICE when `FnCtxt::local_ty` cannot find type; issue error then, return ... | Felix S. Klock II | -3/+3 |
| 2015-03-03 | Auto merge of #22971 - lifthrasiir:metadata-reform, r=huonw | bors | -624/+758 |
| 2015-03-02 | Fix Pandoc version check in configure | Kevin Yap | -3/+5 |
| 2015-03-03 | fix fallout | Jorge Aparicio | -3/+3 |
| 2015-03-03 | privacy: walk associated types in trait impls | Jorge Aparicio | -1/+53 |
| 2015-03-03 | metadata: Reordered integral tags in the ascending order. | Kang Seonghoon | -51/+55 |
| 2015-03-03 | str: fix comments for FromStr for bool | Lai Jiangshan | -2/+13 |
| 2015-03-02 | Slice::swap should be inlineable | David Creswick | -0/+1 |
| 2015-03-03 | metadata: Bump the metadata encoding version. | Kang Seonghoon | -6/+102 |
| 2015-03-03 | metadata: Compact integer encoding. | Kang Seonghoon | -93/+114 |
| 2015-03-03 | metadata: Flatten `tag_table_id` and `tag_table_val` tags. | Kang Seonghoon | -65/+35 |
| 2015-03-03 | metadata: Space-optimize empty vectors and maps. | Kang Seonghoon | -0/+17 |
| 2015-03-03 | metadata: Implement relaxation of short RBML lengths. | Kang Seonghoon | -102/+138 |
| 2015-03-03 | metadata: Introduce `EsSub8` and `EsSub32` tags. | Kang Seonghoon | -35/+77 |
| 2015-03-03 | metadata: Bye bye `EsLabel`. No regrets. | Kang Seonghoon | -47/+4 |
| 2015-03-03 | metadata: Eliminate the `EsEnumBody` tag. | Kang Seonghoon | -35/+12 |
| 2015-03-03 | metadata: Introduce implicit lengths for auto-serialization. | Kang Seonghoon | -52/+121 |
| 2015-03-03 | metadata: New tag encoding scheme. | Kang Seonghoon | -149/+175 |
| 2015-03-03 | metadata: Avoid the use of raw `wr_str` or `write_all`. | Kang Seonghoon | -151/+70 |
| 2015-03-03 | Auto merge of #22600 - brson:num, r=Gankro | bors | -155/+215 |
| 2015-03-03 | Feature gate `#[static_assert]`. | Huon Wilson | -13/+36 |
| 2015-03-02 | core: Audit num module for int/uint | Brian Anderson | -155/+215 |
| 2015-03-02 | Enable recursion for visit_ty in lint visitor | Ivan Petkov | -25/+34 |
| 2015-03-02 | Auto merge of #22882 - alexcrichton:stabilize-process, r=aturon | bors | -15/+57 |
| 2015-03-02 | Add regression tests for #15778 | Keegan McAllister | -0/+80 |
| 2015-03-02 | Readd int_uint feature to libstd | Simonas Kazlauskas | -0/+1 |
| 2015-03-02 | Auto merge of #22963 - Manishearth:rollup, r=Manishearth | bors | -268/+125 |
| 2015-03-03 | Rollup merge of #22966 - nikomatsakis:closure-region-hierarchy, r=pnkfelix | Manish Goregaokar | -230/+93 |
| 2015-03-03 | Rollup merge of #22961 - dotdash:branch_drop, r=eddyb | Manish Goregaokar | -0/+0 |
| 2015-03-03 | Add cfg_attr to known attributes | Manish Goregaokar | -0/+1 |
| 2015-03-03 | Rollup merge of #22961 - dotdash:branch_drop, r=eddyb | Manish Goregaokar | -2/+1 |
| 2015-03-03 | Rollup merge of #22925 - leonardinius:issue-22646-fmt, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-03-03 | Rollup merge of #22911 - djmally:master, r=steveklabnik | Manish Goregaokar | -9/+9 |
| 2015-03-03 | Rollup merge of #22906 - alexandercampbell:readme_typo_fix, r=steveklabnik | Manish Goregaokar | -4/+4 |
| 2015-03-03 | Rollup merge of #22689 - tshepang:thread-doc-improvements, r=steveklabnik | Manish Goregaokar | -22/+16 |
| 2015-03-02 | Added note that method names in tables may differ from actual collections | David Mally | -1/+2 |
| 2015-03-02 | Fixed references to set & take ; minor wording & syntax fixes | David Mally | -5/+5 |
| 2015-03-02 | Make `test/run-pass/backtrace.rs` more robust about own host environment. | Felix S. Klock II | -1/+3 |
| 2015-03-02 | Drop alloca_zeroed | Björn Steinbrink | -27/+5 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -424/+419 |
| 2015-03-02 | Properly propagate block changes while translating drop glue | Björn Steinbrink | -2/+1 |
| 2015-03-02 | Auto merge of #22510 - GuillaumeGomez:audit-integer-libstd-thread, r=alexcric... | bors | -10/+10 |
| 2015-03-02 | Properly propagate block changes while translating drop glue | Björn Steinbrink | -2/+1 |