| Age | Commit message (Expand) | Author | Lines |
| 2013-11-29 | Implement a lock-free work-stealing deque | Alex Crichton | -28/+28 |
| 2013-11-28 | Register new snapshots | Alex Crichton | -1/+1 |
| 2013-11-27 | Use the native tls implementation on android | Alex Crichton | -1/+1 |
| 2013-11-26 | librustc: Make `||` lambdas not infer to `proc`s | Patrick Walton | -3/+6 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -9/+9 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -21/+19 |
| 2013-11-24 | Remove linked failure from the runtime | Alex Crichton | -11/+2 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -10/+10 |
| 2013-11-18 | libstd: Change all `~fn()`s to `proc`s in the standard library. | Patrick Walton | -1/+3 |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -1/+1 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -1/+0 |
| 2013-11-10 | Rework the idle callback to have a safer interface | Alex Crichton | -3/+4 |
| 2013-11-10 | Remove usage of ~fn from the scheduler | Alex Crichton | -3/+2 |
| 2013-11-10 | Remove usage of ~fn() from uv async/idle | Alex Crichton | -3/+11 |
| 2013-11-04 | Move io::file to io::fs and fns out of File | Alex Crichton | -1/+1 |
| 2013-10-29 | auto merge of #10058 : alexcrichton/rust/uv-crate, r=brson | bors | -12/+5 |
| 2013-10-29 | Move rust's uv implementation to its own crate | Alex Crichton | -1/+0 |
| 2013-10-28 | Register new snapshots | Alex Crichton | -75/+57 |
| 2013-10-28 | Make some more rt components public | Alex Crichton | -11/+5 |
| 2013-10-28 | Allow fail messages to be caught, and introduce the Any trait | Marvin Löbel | -2/+2 |
| 2013-10-26 | auto merge of #10070 : alexcrichton/rust/fewer-missiles, r=brson | bors | -1/+8 |
| 2013-10-25 | Fire fewer homing missiles | Alex Crichton | -1/+8 |
| 2013-10-24 | Implement a basic event loop built on LittleLock | Alex Crichton | -10/+6 |
| 2013-10-24 | Remove the 'callback_ms' function from EventLoop | Alex Crichton | -10/+3 |
| 2013-10-24 | Fix a bug with the scheduler and destructor order | Alex Crichton | -1/+11 |
| 2013-10-24 | Remove IoFactoryObject for ~IoFactory | Alex Crichton | -3/+4 |
| 2013-10-24 | Migrate Rtio objects to true trait objects | Alex Crichton | -6/+6 |
| 2013-10-23 | auto merge of #9810 : huonw/rust/rand3, r=alexcrichton | bors | -1/+1 |
| 2013-10-23 | std::rand: add distributions::Range for generating [lo, hi). | Huon Wilson | -1/+1 |
| 2013-10-23 | Removed unnecessary comments and white spaces as suggested | reedlepee | -1/+1 |
| 2013-10-23 | Removed Unnecessary comments and white spaces #4386 | reedlepee | -5/+0 |
| 2013-10-23 | Making fields in std and extra : private #4386 | reedlepee | -7/+12 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -2/+2 |
| 2013-10-19 | auto merge of #9834 : alexcrichton/rust/morestack, r=brson | bors | -1/+1 |
| 2013-10-19 | Use __morestack to detect stack overflow | Alex Crichton | -1/+1 |
| 2013-10-17 | std: Move size/align functions to std::mem. #2240 | Brian Anderson | -2/+2 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -1/+1 |
| 2013-10-09 | std::rand: Minor clean-up of comments & add a missing default method. | Huon Wilson | -1/+0 |
| 2013-10-09 | Convert rt::sched::new_sched_rng to use open/read/close rather than f*. | Huon Wilson | -16/+10 |
| 2013-10-09 | std::rand: make the windows OSRng more correct, remove some C++. | Huon Wilson | -1/+2 |
| 2013-10-09 | std::rand: Add a trait for seeding RNGs: SeedableRng. | Huon Wilson | -2/+2 |
| 2013-10-09 | std::rand: Add OSRng, ReaderRng wrappers around the OS RNG & generic Readers ... | Huon Wilson | -1/+55 |
| 2013-10-07 | Fix existing privacy/visibility violations | Alex Crichton | -0/+6 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -8/+8 |
| 2013-09-27 | Suppress warning by removing unused import | Flavio Percoco | -1/+0 |
| 2013-09-25 | std::rt: Implement task yielding. Fix a starvation problem | Brian Anderson | -28/+129 |
| 2013-09-22 | disable starvation test completely for now | Daniel Micay | -13/+10 |
| 2013-09-22 | disable scheduler starvation test on valgrind | Daniel Micay | -9/+13 |
| 2013-09-23 | std: merge rand::{Rng,RngUtil} with default methods. | Huon Wilson | -2/+2 |
| 2013-09-19 | std::rt: Try stealing from all schedulers | Brian Anderson | -10/+27 |