| Age | Commit message (Expand) | Author | Lines |
| 2013-10-15 | path2: Extract posix/windows into their own files | Kevin Ballard | -1639/+1693 |
| 2013-10-15 | path2: Add tests for the [u8]-based methods | Kevin Ballard | -270/+560 |
| 2013-10-15 | path2: Update all the tests for the new [u8]-based approach | Kevin Ballard | -179/+189 |
| 2013-10-15 | path2: Reimplement PosixPath in terms of ~[u8] | Kevin Ballard | -138/+154 |
| 2013-10-15 | path2: Start reimplementing in terms of ~[u8] instead of ~str | Kevin Ballard | -88/+357 |
| 2013-10-15 | path2: Implement PosixPath | Kevin Ballard | -1/+770 |
| 2013-10-15 | Initial sketching out of the new path module | Kevin Ballard | -0/+286 |
| 2013-10-15 | use element count in slices, not size in bytes | Daniel Micay | -21/+109 |
| 2013-10-15 | fix bounds checking failure message | Daniel Micay | -1/+1 |
| 2013-10-14 | add an `abort` intrinsic | Daniel Micay | -0/+3 |
| 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 | auto merge of #9606 : steveklabnik/rust/abi_removal, r=alexcrichton | bors | -33/+0 |
| 2013-10-14 | auto merge of #9848 : huonw/rust/move-trait-doc, r=alexcrichton | bors | -302/+303 |
| 2013-10-14 | Removing ccdecl | Steve Klabnik | -28/+28 |
| 2013-10-14 | std::vec: move documentation from impls to traits. | Huon Wilson | -302/+303 |
| 2013-10-14 | Remove unused abi attributes. | Steve Klabnik | -61/+28 |
| 2013-10-14 | std::libc: rustdoc indicates reexports now | Scott Lawrence | -3/+2 |
| 2013-10-12 | auto merge of #9608 : hmarr/rust/vec-get-opt, r=huonw | bors | -0/+18 |
| 2013-10-12 | rc: fix docstring | Daniel Micay | -1/+1 |
| 2013-10-11 | auto merge of #9809 : fhahn/rust/remove-old-cratemap-code, r=alexcrichton | bors | -170/+10 |
| 2013-10-11 | auto merge of #9794 : thestinger/rust/rc, r=alexcrichton | bors | -0/+384 |
| 2013-10-11 | clean up the `Rc`/`RcMut` types and move to libstd | Daniel Micay | -0/+384 |
| 2013-10-11 | Remove support for older CrateMap versions | Florian Hahn | -170/+10 |
| 2013-10-11 | auto merge of #9803 : alexcrichton/rust/less-pub2, r=brson | bors | -98/+113 |
| 2013-10-11 | De-pub some private runtime components | Alex Crichton | -98/+113 |
| 2013-10-10 | Fix usage of <float> in docs | Volker Mische | -1/+1 |
| 2013-10-10 | auto merge of #9749 : alexcrichton/rust/less-io, r=brson | bors | -977/+1336 |
| 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 | Remove usage of io::FILE_writer | Alex Crichton | -49/+13 |
| 2013-10-10 | Migrate users of io::fd_t to io::native::file::fd_t | Alex Crichton | -101/+40 |
| 2013-10-10 | Move std::run off of std::io | Alex Crichton | -769/+65 |
| 2013-10-10 | Implement BufferedReader.{read_until, read_line} | Alex Crichton | -7/+65 |
| 2013-10-10 | Implement rt::io::stdio | Alex Crichton | -26/+84 |
| 2013-10-09 | auto merge of #9780 : sfackler/rust/extensions2, r=alexcrichton | bors | -1/+1 |
| 2013-10-09 | auto merge of #9774 : sebcrozet/rust/master, r=huonw | bors | -2/+1 |
| 2013-10-09 | auto merge of #9742 : alexcrichton/rust/issue-9739, r=brson | bors | -40/+8 |
| 2013-10-09 | Don't abort if the runtime is run twice. | Alex Crichton | -40/+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 | -46/+90 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -117/+82 |
| 2013-10-09 | std::rand: Minor clean-up of comments & add a missing default method. | Huon Wilson | -3/+5 |
| 2013-10-09 | std::rand: remove seed_task_rng and RUST_SEED. | Huon Wilson | -76/+9 |
| 2013-10-09 | std::rand: Make Rng.next_u32 non-default, waiting for #7771. | Huon Wilson | -6/+11 |
| 2013-10-09 | std::rand::os: use the externfn! macro for the Windows RNG. | Huon Wilson | -22/+16 |
| 2013-10-09 | std::rand::reseeding: seed the reseeder in the SeedableRng impl. | Huon Wilson | -12/+13 |
| 2013-10-09 | std::rand::reader: describe cfg!(endianness). | Huon Wilson | -0/+4 |
| 2013-10-09 | std::rand: Correct the implementation of Rand for f32 & f64. | Huon Wilson | -8/+29 |