| Age | Commit message (Expand) | Author | Lines |
| 2013-10-22 | Minor grammatical fixes and removed section on 'rust' tool | Michael Letterle | -2/+2 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -103/+103 |
| 2013-10-20 | Don't allocate a string when calling println | Alex Crichton | -1/+18 |
| 2013-10-19 | auto merge of #9834 : alexcrichton/rust/morestack, r=brson | bors | -67/+412 |
| 2013-10-19 | Use __morestack to detect stack overflow | Alex Crichton | -67/+412 |
| 2013-10-18 | auto merge of #9926 : Kimundi/rust/future_result_bad_sig, r=huonw | bors | -25/+0 |
| 2013-10-18 | Made `std::task::TaskBuilder::future_result()` easier to use | Marvin Löbel | -25/+0 |
| 2013-10-17 | std: Move size/align functions to std::mem. #2240 | Brian Anderson | -7/+7 |
| 2013-10-16 | auto merge of #9721 : klutzy/rust/uv-net-read-fix, r=alexcrichton | bors | -8/+38 |
| 2013-10-16 | auto merge of #9655 : kballard/rust/path-rewrite, r=alexcrichton | bors | -38/+47 |
| 2013-10-15 | auto merge of #9857 : brson/rust/mainsched, r=alexcrichton | bors | -2/+8 |
| 2013-10-15 | path2: Adjust the API to remove all the _str mutation methods | Kevin Ballard | -27/+28 |
| 2013-10-15 | path2: Replace the path module outright | Kevin Ballard | -38/+46 |
| 2013-10-14 | std::rt: Fix the set up of the main thread so that it doesn't try to steal work | Brian Anderson | -2/+8 |
| 2013-10-14 | Remove unused abi attributes. | Steve Klabnik | -1/+0 |
| 2013-10-11 | auto merge of #9809 : fhahn/rust/remove-old-cratemap-code, r=alexcrichton | bors | -170/+10 |
| 2013-10-11 | Remove support for older CrateMap versions | Florian Hahn | -170/+10 |
| 2013-10-11 | De-pub some private runtime components | Alex Crichton | -28/+134 |
| 2013-10-10 | auto merge of #9749 : alexcrichton/rust/less-io, r=brson | bors | -145/+1251 |
| 2013-10-10 | Make the file::DirectoryInfo trait public | Alex Crichton | -1/+1 |
| 2013-10-10 | Remove some users of io::file_reader | Alex Crichton | -4/+24 |
| 2013-10-10 | Migrate users of io::fd_t to io::native::file::fd_t | Alex Crichton | -88/+34 |
| 2013-10-10 | Implement BufferedReader.{read_until, read_line} | Alex Crichton | -7/+65 |
| 2013-10-10 | Implement rt::io::stdio | Alex Crichton | -25/+83 |
| 2013-10-09 | auto merge of #9780 : sfackler/rust/extensions2, r=alexcrichton | bors | -1/+1 |
| 2013-10-09 | auto merge of #9742 : alexcrichton/rust/issue-9739, r=brson | bors | -2/+8 |
| 2013-10-09 | Don't abort if the runtime is run twice. | Alex Crichton | -2/+8 |
| 2013-10-09 | Implement io::native::process | Alex Crichton | -0/+752 |
| 2013-10-09 | Implement io::native::stdio | Alex Crichton | -0/+67 |
| 2013-10-09 | Implement io::native::file | Alex Crichton | -25/+230 |
| 2013-10-09 | auto merge of #9664 : alexcrichton/rust/logging, r=huonw | bors | -19/+2 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -26/+26 |
| 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-09 | std::rand: Add an implementation of ISAAC64. | Huon Wilson | -1/+1 |
| 2013-10-08 | Make std::rt::io::extensions public | Steven Fackler | -1/+1 |
| 2013-10-08 | rm useless fast_ffi attributes | Daniel Micay | -10/+0 |
| 2013-10-07 | Fix existing privacy/visibility violations | Alex Crichton | -5/+26 |
| 2013-10-06 | auto merge of #9593 : fhahn/rust/logging-unsafe-removal, r=alexcrichton | bors | -202/+305 |
| 2013-10-06 | get_crate_map returns an Option | Florian Hahn | -23/+42 |
| 2013-10-05 | Make a task name use a `SendStr`, allowing for either | Marvin Löbel | -2/+2 |
| 2013-10-05 | Add code for older crate map versions, bumped crate map version number | Florian Hahn | -38/+171 |
| 2013-10-05 | Use &'self str instead of raw char pointer in ModEntry | Florian Hahn | -127/+99 |
| 2013-10-05 | Use slice representation for module entries in CrateMap | Florian Hahn | -87/+47 |
| 2013-10-05 | Use slice representation for child crate maps | Florian Hahn | -116/+135 |
| 2013-10-05 | rt::io::net::tcp: Fix eof_twice tests on Win32 | klutzy | -6/+20 |
| 2013-10-05 | std::rt: Add NotConnected to IoErrorKind | klutzy | -0/+5 |