| Age | Commit message (Expand) | Author | Lines |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -2/+2 |
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -1/+1 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -3/+3 |
| 2014-05-23 | core: Finish stabilizing the `mem` module. | Alex Crichton | -1/+1 |
| 2014-05-22 | libstd: Remove all uses of `~str` from `libstd` | Patrick Walton | -23/+0 |
| 2014-05-14 | Add ToCStr impl for &Path and StrBuf | Aaron Turon | -0/+54 |
| 2014-05-11 | core: Remove the cast module | Alex Crichton | -12/+11 |
| 2014-05-10 | rename `global_heap` -> `libc_heap` | Daniel Micay | -1/+1 |
| 2014-05-03 | rustdoc: Migrate from sundown to hoedown | Alex Crichton | -1/+1 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -1/+2 |
| 2014-04-11 | libtest: rename `BenchHarness` to `Bencher` | Liigo Zhuang | -33/+33 |
| 2014-04-04 | Fix fallout from std::libc separation | Corey Richardson | -19/+24 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -4/+4 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -3/+3 |
| 2014-02-23 | std: Move raw to std::raw | Brian Anderson | -1/+1 |
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -1/+2 |
| 2014-02-14 | Add c_str::CString.as_bytes_no_nul() | Kevin Ballard | -4/+37 |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of... | JeremyLetang | -24/+23 |
| 2014-02-09 | std: Add init and uninit to mem. Replace direct intrinsic usage | Brian Anderson | -2/+2 |
| 2014-02-08 | Remove an unused variable in a test of std::c_str. | OGINO Masanori | -1/+0 |
| 2014-02-06 | Remove std::condition | Alex Crichton | -44/+6 |
| 2014-02-01 | impl Eq for CString | Corey Richardson | -4/+28 |
| 2014-02-01 | impl Clone for CString | Corey Richardson | -4/+48 |
| 2014-01-31 | Test for null buffer in CString.len()/.iter() and fail | Kevin Ballard | -3/+36 |
| 2014-01-31 | Introduce marker types for indicating variance and for opting out | Niko Matsakis | -2/+3 |
| 2014-01-28 | Rename CopyableVector to CloneableVector | Virgile Andreani | -1/+1 |
| 2014-01-22 | libc: switch `free` to the proper signature | Daniel Micay | -2/+2 |
| 2014-01-21 | [std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be... | Simon Sapin | -1/+1 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -4/+4 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -4/+3 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -3/+7 |
| 2013-12-20 | std: silence warnings when compiling test. | Huon Wilson | -2/+1 |
| 2013-12-19 | std::str: replace .as_imm_buf with .as_ptr. | Huon Wilson | -8/+7 |
| 2013-12-19 | std::vec: remove .as_muf_buf, replaced by .as_mut_ptr & .len. | Huon Wilson | -6/+5 |
| 2013-12-19 | std::vec: remove .as_imm_buf, replaced by .as_ptr & .len. | Huon Wilson | -9/+8 |
| 2013-12-15 | std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut []. | Huon Wilson | -1/+1 |
| 2013-12-15 | std::vec: remove unnecessary count parameter on {bytes, | Huon Wilson | -1/+1 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -5/+5 |
| 2013-12-04 | std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter. | Huon Wilson | -1/+1 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -54/+42 |
| 2013-11-19 | libstd: Change all uses of `&fn(A)->B` over to `|A|->B` in libstd | Patrick Walton | -10/+10 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -8/+3 |
| 2013-11-04 | docs: Replace std::iterator with std::iter. | Huon Wilson | -1/+1 |
| 2013-10-24 | Remove IoFactoryObject for ~IoFactory | Alex Crichton | -1/+3 |
| 2013-10-24 | Remove rt::io::support | Alex Crichton | -0/+43 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -4/+4 |
| 2013-09-30 | std: Remove usage of fmt! | Alex Crichton | -4/+4 |
| 2013-09-26 | std: simplify vec.with_c_str | Erick Tryzelaar | -28/+20 |
| 2013-09-26 | std: add micro optimization to vec.with_c_str_unchecked | Erick Tryzelaar | -0/+47 |
| 2013-09-26 | std: Up vec.with_c_str's stack buffer to 128 | Erick Tryzelaar | -1/+1 |