| Age | Commit message (Expand) | Author | Lines |
| 2014-05-25 | libstd: Remove unnecessary re-exports under std::std | Kevin Ballard | -2/+2 |
| 2014-05-22 | libcore: Remove all uses of `~str` from `libcore`. | Patrick Walton | -5/+4 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -5/+7 |
| 2014-05-12 | Add `stat` method to `std::io::fs::File` to stat without a Path. | Yuri Kunde Schlesner | -6/+14 |
| 2014-05-07 | core: Add unwrap()/unwrap_err() methods to Result | Alex Crichton | -1/+1 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -3/+4 |
| 2014-05-05 | Change std::io::FilePermission to a typesafe representation | Aaron Turon | -3/+3 |
| 2014-04-30 | native: Always open a file with Open/Write modes | Alex Crichton | -0/+20 |
| 2014-04-25 | clarify docs for std:io::fs::Path::{is_dir,is_file,exists}; add lstat | Aaron Turon | -28/+28 |
| 2014-04-24 | fix O(n^2) perf bug for std::io::fs::walk_dir | Aaron Turon | -2/+29 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -0/+1 |
| 2014-04-14 | Use new attribute syntax in python files in src/etc too (#13478) | Manish Goregaokar | -8/+8 |
| 2014-04-10 | std,native,green,rustuv: make readdir return `Vec`. | Huon Wilson | -2/+2 |
| 2014-04-06 | De-~[] Reader and Writer | Steven Fackler | -5/+5 |
| 2014-04-01 | auto merge of #13115 : huonw/rust/rand-errors, r=alexcrichton | bors | -1/+1 |
| 2014-04-01 | rand: bubble up IO messages futher. | Huon Wilson | -1/+1 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -4/+4 |
| 2014-03-27 | Fix fallout of removing default bounds | Alex Crichton | -1/+2 |
| 2014-03-24 | comm: Implement synchronous channels | Alex Crichton | -2/+2 |
| 2014-03-23 | This commit cleans up a few test warnings | Steven Stewart-Gallus | -2/+2 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -1/+1 |
| 2014-03-10 | fs: units tests for mkdir_recusive and rmdir_recursive | Laurent Bonnans | -0/+26 |
| 2014-03-10 | fs: use an iterative algorithm for 'rmdir_recursive' | Laurent Bonnans | -8/+41 |
| 2014-03-10 | fs: use an iterative algorithm for 'mkdir_recursive' | Laurent Bonnans | -3/+18 |
| 2014-03-06 | fix typos with with repeated words, just like this sentence. | Kang Seonghoon | -1/+1 |
| 2014-02-27 | rustc: Use libnative for the compiler | Alex Crichton | -1/+1 |
| 2014-02-27 | std: Small cleanup and test improvement | Alex Crichton | -132/+155 |
| 2014-02-24 | Correctly ignore some tests on windows | Alex Crichton | -3/+2 |
| 2014-02-23 | Roll std::run into std::io::process | Alex Crichton | -0/+1 |
| 2014-02-20 | Mass rename if_ok! to try! | Alex Crichton | -11/+11 |
| 2014-02-11 | Move replace and swap to std::mem. Get rid of std::util | Edward Wang | -1/+0 |
| 2014-02-03 | std: Fixing all documentation | Alex Crichton | -96/+68 |
| 2014-02-03 | std: Fix tests with io_error usage | Alex Crichton | -138/+128 |
| 2014-02-03 | std: Remove io::io_error | Alex Crichton | -188/+171 |
| 2014-01-29 | Flag Result as #[must_use] and deal with fallout. | Alex Crichton | -3/+3 |
| 2014-01-21 | [std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr... | Simon Sapin | -1/+1 |
| 2014-01-21 | [std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be... | Simon Sapin | -7/+7 |
| 2014-01-21 | [std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behavior | Simon Sapin | -1/+1 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -4/+4 |
| 2014-01-09 | Remove eof() from io::Reader | Alex Crichton | -2/+8 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -6/+19 |
| 2013-12-24 | std: Get stdtest all passing again | Alex Crichton | -56/+31 |
| 2013-12-24 | std: Expose that LocalIo may not always be available | Alex Crichton | -37/+29 |
| 2013-12-15 | std: fix spelling in docs. | Huon Wilson | -7/+7 |
| 2013-12-10 | librustuv: Change `with_local_io` to use RAII. | Patrick Walton | -21/+19 |
| 2013-12-04 | Revert "libstd: Change `Path::new` to `Path::init`." | Kevin Ballard | -24/+24 |
| 2013-12-04 | std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter. | Huon Wilson | -7/+7 |
| 2013-12-04 | std::str: remove from_utf8. | Huon Wilson | -21/+18 |
| 2013-12-03 | Move std::util::ignore to std::prelude::drop | Steven Fackler | -2/+2 |