| Age | Commit message (Expand) | Author | Lines |
| 2013-11-29 | Implement a lock-free work-stealing deque | Alex Crichton | -3/+2 |
| 2013-11-27 | Improve the rt::thread module | Alex Crichton | -1/+1 |
| 2013-11-26 | librustc: Make `||` lambdas not infer to `proc`s | Patrick Walton | -6/+6 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -16/+16 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -5/+3 |
| 2013-11-24 | Remove linked failure from the runtime | Alex Crichton | -1162/+18 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -17/+19 |
| 2013-11-18 | auto merge of #10561 : pcwalton/rust/procify, r=alexcrichton | bors | -22/+24 |
| 2013-11-18 | Remove the C++ lock_and_signal type | Alex Crichton | -22/+12 |
| 2013-11-18 | libstd: Change all `~fn()`s to `proc`s in the standard library. | Patrick Walton | -22/+24 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -6/+8 |
| 2013-11-10 | Remove a debug! statement before I/O is ready | Alex Crichton | -1/+0 |
| 2013-11-01 | Remove unnecessary unwind messages | Alex Crichton | -18/+11 |
| 2013-10-30 | Prepared `std::sys` for removal, and made `begin_unwind` simpler | Marvin Löbel | -20/+35 |
| 2013-10-29 | Move rust's uv implementation to its own crate | Alex Crichton | -9/+5 |
| 2013-10-28 | Make some more rt components public | Alex Crichton | -5/+9 |
| 2013-10-28 | auto merge of #10095 : huonw/rust/master, r=cmr | bors | -2/+2 |
| 2013-10-28 | Allow fail messages to be caught, and introduce the Any trait | Marvin Löbel | -66/+159 |
| 2013-10-27 | Make the documentation for std::task::spawn_sched render correctly. | Huon Wilson | -2/+2 |
| 2013-10-24 | Implement a basic event loop built on LittleLock | Alex Crichton | -42/+42 |
| 2013-10-24 | Migrate Rtio objects to true trait objects | Alex Crichton | -2/+2 |
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -12/+8 |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -15/+19 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -33/+33 |
| 2013-10-18 | Made `std::task::TaskBuilder::future_result()` easier to use | Marvin Löbel | -31/+26 |
| 2013-10-11 | De-pub some private runtime components | Alex Crichton | -7/+7 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -8/+8 |
| 2013-10-07 | Fix merge fallout of privacy changes | Alex Crichton | -1/+1 |
| 2013-10-07 | Fix existing privacy/visibility violations | Alex Crichton | -9/+4 |
| 2013-10-05 | Implemented `IntoSendStr` on `SendStr` to allow naming a | Marvin Löbel | -0/+15 |
| 2013-10-05 | Make a task name use a `SendStr`, allowing for either | Marvin Löbel | -4/+20 |
| 2013-10-01 | auto merge of #9576 : FlaPer87/rust/issue/9125, r=alexcrichton | bors | -19/+29 |
| 2013-10-01 | Update std::task::mod docstring | Flavio Percoco | -19/+29 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -29/+29 |
| 2013-09-25 | std::rt: Implement task yielding. Fix a starvation problem | Brian Anderson | -4/+1 |
| 2013-09-25 | rustdoc: Change all code-blocks with a script | Alex Crichton | -5/+5 |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -33/+28 |
| 2013-08-27 | Consolidate local_data implementations, and cleanup | Alex Crichton | -323/+0 |
| 2013-08-27 | librustc: Ensure that type parameters are in the right positions in paths. | Patrick Walton | -12/+12 |
| 2013-08-27 | Trailing space | Flaper Fesp | -1/+1 |
| 2013-08-27 | Rebased and replaced yield with deschedule | Flaper Fesp | -1/+1 |
| 2013-08-27 | Decrement unkillable counter before failing | Flaper Fesp | -2/+2 |
| 2013-08-27 | Don't make the runtime exit on illegal calls | Flaper Fesp | -15/+33 |
| 2013-08-27 | Testing rekillable fails when called from outside an unkillable block | Flaper Fesp | -1/+17 |
| 2013-08-27 | Make rekillable consistent with unkillable | Flaper Fesp | -16/+27 |
| 2013-08-23 | auto merge of #8677 : bblum/rust/scratch, r=alexcrichton | bors | -45/+32 |
| 2013-08-22 | Enabled unit tests in std and extra. | Vadim Chugunov | -26/+19 |
| 2013-08-21 | std/extra: changing XXX to FIXME; cleanup | Tim Chevalier | -1/+1 |
| 2013-08-20 | small cleanups in task/spawn.rs | Ben Blum | -45/+32 |
| 2013-08-19 | Add externfn macro and correctly label fixed_stack_segments | Niko Matsakis | -12/+15 |