| Age | Commit message (Expand) | Author | Lines |
| 2013-12-18 | auto merge of #11033 : michaelwoerister/rust/byvalself, r=pcwalton | bors | -197/+215 |
| 2013-12-18 | auto merge of #11024 : huonw/rust/return-from-closures, r=alexcrichton | bors | -21/+41 |
| 2013-12-18 | auto merge of #10915 : alexcrichton/rust/fixes, r=ILyoan | bors | -28/+15 |
| 2013-12-18 | rustc: Allow `return` to return from a closure. | Huon Wilson | -21/+41 |
| 2013-12-18 | auto merge of #11025 : ezyang/rust/reword-second-borrow, r=cmr | bors | -2/+2 |
| 2013-12-17 | auto merge of #11018 : sfackler/rust/variant-strip, r=alexcrichton | bors | -11/+6 |
| 2013-12-17 | auto merge of #11019 : alexcrichton/rust/issue-10545, r=pcwalton | bors | -10/+35 |
| 2013-12-18 | mklldeps.py: Write to file instead of print | klutzy | -9/+11 |
| 2013-12-18 | llvm: Disable pthread on mingw | klutzy | -492/+2 |
| 2013-12-17 | auto merge of #11009 : ktt3ja/rust/issue-11006, r=alexcrichton | bors | -10/+6 |
| 2013-12-17 | auto merge of #10967 : chris-morgan/rust/clean-and-tidy-some-traits, r=alexcr... | bors | -450/+9 |
| 2013-12-17 | auto merge of #10979 : alexcrichton/rust/less-bc, r=cmr | bors | -11/+16 |
| 2013-12-17 | auto merge of #10863 : cadencemarseille/rust/patch-handle-ENOENT, r=alexcrichton | bors | -3/+12 |
| 2013-12-17 | Don't allow impls to force public types | Alex Crichton | -10/+35 |
| 2013-12-17 | debuginfo: Updated test cases to also test by-value self arguments. | Michael Woerister | -193/+192 |
| 2013-12-17 | debuginfo: Properly support by-value self arguments | Michael Woerister | -4/+23 |
| 2013-12-17 | auto merge of #11030 : cmr/rust/rustdoc_on_fire, r=metajack | bors | -9/+8 |
| 2013-12-17 | Fix rustdoc HTML rendering | Corey Richardson | -9/+8 |
| 2013-12-17 | auto merge of #10972 : metajack/rust/pkgid-with-name, r=alexcrichton | bors | -51/+77 |
| 2013-12-17 | Change pkgid parser to allow overriding the inferred crate name. | Jack Moffitt | -51/+77 |
| 2013-12-17 | auto merge of #11005 : sanxiyn/rust/mut, r=alexcrichton | bors | -48/+48 |
| 2013-12-17 | auto merge of #10998 : thestinger/rust/iter, r=alexcrichton | bors | -4/+2 |
| 2013-12-17 | s/Second borrow/Previous borrow/ in error messages. | Edward Z. Yang | -2/+2 |
| 2013-12-17 | Handle ENOENT | Cadence Marseille | -3/+12 |
| 2013-12-17 | auto merge of #10996 : huonw/rust/more-vec-raw, r=cmr | bors | -89/+65 |
| 2013-12-17 | auto merge of #10990 : ktt3ja/rust/method-stability, r=huonw | bors | -53/+171 |
| 2013-12-17 | auto merge of #10830 : alexcrichton/rust/spsc-queue, r=brson | bors | -3103/+3500 |
| 2013-12-16 | Test fallout from std::comm rewrite | Alex Crichton | -96/+121 |
| 2013-12-16 | test: Add a test that POD types can be implicitly copied. | Patrick Walton | -1/+24 |
| 2013-12-16 | libstd: Implement the new `Cell`. | Patrick Walton | -0/+100 |
| 2013-12-16 | librustc: Implement a `Pod` kind for types that can be `memcpy`'d. | Patrick Walton | -57/+182 |
| 2013-12-16 | Fix rustdoc output of enums with private variants | Steven Fackler | -11/+6 |
| 2013-12-16 | Fallout of rewriting std::comm | Alex Crichton | -2590/+765 |
| 2013-12-16 | Rewrite std::comm | Alex Crichton | -434/+2631 |
| 2013-12-16 | Check even more live Path nodes in dead-code pass | Kiet Tran | -10/+6 |
| 2013-12-17 | std::vec: make init_elem nicer by doing fewer moves. | Huon Wilson | -5/+1 |
| 2013-12-17 | std::vec: convert .copy_memory to use copy_nonoverlapping_memory. | Huon Wilson | -5/+5 |
| 2013-12-17 | std::vec::bytes: remove the reference to overlapping src and dest in | Huon Wilson | -7/+4 |
| 2013-12-17 | std::vec::raw: convert copy_memory to a method. | Huon Wilson | -23/+22 |
| 2013-12-17 | std::vec::raw: convert init_elem to a method. | Huon Wilson | -16/+16 |
| 2013-12-16 | Detect stability attributes on methods. | Kiet Tran | -53/+171 |
| 2013-12-16 | auto merge of #11002 : pnkfelix/rust/fsk-improve-doc-for-ptr-offset, r=alexcr... | bors | -1/+5 |
| 2013-12-16 | Make BufferedReader propagate 0-byte long reads. | Sébastien Paolacci | -3/+3 |
| 2013-12-17 | Remove obsolete mutability from ast::Ty | Seo Sanghyeon | -48/+48 |
| 2013-12-16 | auto merge of #11000 : cmr/rust/auto_encode, r=alexcrichton | bors | -42/+34 |
| 2013-12-16 | Spell out the units used for the `offset` argument, so that people do | Felix S. Klock II | -1/+5 |
| 2013-12-16 | Update and un-xfail auto-encode test | Corey Richardson | -42/+34 |
| 2013-12-16 | vec: avoid some unsafe code in MoveIterator's dtor | Daniel Micay | -4/+2 |
| 2013-12-16 | auto merge of #10966 : michaelwoerister/rust/prelude2, r=cmr | bors | -27/+584 |
| 2013-12-17 | std::vec: remove aliasing &mut [] and &[] from shift_opt. | Huon Wilson | -43/+27 |