| Age | Commit message (Expand) | Author | Lines |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -65/+65 |
| 2014-02-27 | path: Implement windows::make_non_verbatim() | Kevin Ballard | -0/+66 |
| 2014-02-27 | path: clean up some lint warnings and an obsolete comment | Kevin Ballard | -2/+1 |
| 2014-02-27 | std: Small cleanup and test improvement | Alex Crichton | -4/+4 |
| 2014-02-23 | Remove all ToStr impls, add Show impls | Alex Crichton | -11/+0 |
| 2014-02-24 | Transition to new `Hash`, removing IterBytes and std::to_bytes. | Huon Wilson | -8/+8 |
| 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 | -2/+1 |
| 2014-02-07 | Rewrite path::Display to reduce unnecessary allocation | Kevin Ballard | -44/+20 |
| 2014-02-07 | Implement BytesContainer for MaybeOwned | Kevin Ballard | -0/+17 |
| 2014-02-07 | Tweak from_utf8_lossy to return a new MaybeOwned enum | Kevin Ballard | -2/+2 |
| 2014-02-08 | std::fmt: convert the formatting traits to a proper self. | Huon Wilson | -2/+2 |
| 2014-02-07 | auto merge of #12062 : kballard/rust/from_utf8_lossy, r=huonw | bors | -25/+2 |
| 2014-02-06 | Hoist path::Display on top of from_utf8_lossy() | Kevin Ballard | -25/+2 |
| 2014-02-06 | Remove std::condition | Alex Crichton | -211/+48 |
| 2014-02-03 | Fixing remaining warnings and errors throughout | Alex Crichton | -1/+1 |
| 2014-02-03 | std: Remove io::io_error | Alex Crichton | -1/+1 |
| 2014-02-02 | std: rename fmt::Default to `Show`. | Huon Wilson | -3/+3 |
| 2014-02-02 | std,extra: remove use of & support for @[]. | Huon Wilson | -23/+0 |
| 2014-02-02 | libextra: Remove `@str` from all the libraries | Patrick Walton | -17/+0 |
| 2014-01-29 | auto merge of #11893 : Armavica/rust/copyable-cloneable, r=huonw | bors | -4/+4 |
| 2014-01-29 | Removing do keyword from libstd and librustc | Scott Lawrence | -4/+4 |
| 2014-01-28 | Rename OwnedCopyableVector to OwnedCloneableVector | Virgile Andreani | -2/+2 |
| 2014-01-28 | Rename CopyableVector to CloneableVector | Virgile Andreani | -3/+3 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -5/+5 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -5/+5 |
| 2014-01-21 | [std::str] Remove the now unused not_utf8 condition. | Simon Sapin | -3/+3 |
| 2014-01-21 | [std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be... | Simon Sapin | -9/+9 |
| 2014-01-21 | [std::path] Rename .container_as_str_opt() to .container_as_str(), drop the o... | Simon Sapin | -40/+11 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -2/+2 |
| 2014-01-20 | auto merge of #11673 : omasanori/rust/sep-doc, r=alexcrichton | bors | -2/+2 |
| 2014-01-19 | auto merge of #11643 : kballard/rust/path-root-path, r=erickt | bors | -4/+7 |
| 2014-01-20 | Fix misuse of character/byte in std::path. | OGINO Masanori | -2/+2 |
| 2014-01-18 | Expose platform independent path separators | Erick Tryzelaar | -41/+62 |
| 2014-01-18 | auto merge of #11605 : alexcrichton/rust/issue-9582, r=brson | bors | -2/+2 |
| 2014-01-17 | Make WindowsPath::new("C:foo").root_path() return Some("C:") | Kevin Ballard | -4/+7 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -32/+32 |
| 2014-01-17 | auto merge of #11585 : nikomatsakis/rust/issue-3511-rvalue-lifetimes, r=pcwalton | bors | -7/+20 |
| 2014-01-16 | Forbid coercing unsafe functions to closures | Alex Crichton | -2/+2 |
| 2014-01-15 | Issue #3511 - Rationalize temporary lifetimes. | Niko Matsakis | -7/+20 |
| 2014-01-15 | path: Fix joining Windows path when the receiver is "C:" | Kevin Ballard | -2/+9 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -6/+4 |
| 2014-01-07 | std: Fill in all missing imports | Alex Crichton | -3/+6 |
| 2014-01-08 | Renamed Option::map_default and mutate_default to map_or and mutate_or_set | Marvin Löbel | -1/+1 |
| 2013-12-30 | Add more benchmark tests to path/posix | g3xzh | -0/+41 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -4/+3 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -25/+25 |
| 2013-12-08 | Remove dead codes | Kiet Tran | -5/+0 |
| 2013-12-04 | Revert "libstd: Change `Path::new` to `Path::init`." | Kevin Ballard | -356/+356 |
| 2013-12-04 | std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter. | Huon Wilson | -10/+10 |