| Age | Commit message (Expand) | Author | Lines |
| 2014-06-05 | std: Recreate a `collections` module | Alex Crichton | -4/+6 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -4/+4 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -5/+5 |
| 2014-05-28 | std: Remove format_strbuf!() | Alex Crichton | -1/+1 |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -8/+8 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -20/+20 |
| 2014-05-23 | auto merge of #14360 : alexcrichton/rust/remove-deprecated, r=kballard | bors | -57/+2 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -25/+19 |
| 2014-05-22 | Remove a slew of old deprecated functions | Alex Crichton | -57/+2 |
| 2014-05-14 | Add ToCStr impl for &Path and StrBuf | Aaron Turon | -3/+41 |
| 2014-05-11 | core: Remove the cast module | Alex Crichton | -4/+4 |
| 2014-05-07 | core: Inherit possible string functionality | Alex Crichton | -3/+3 |
| 2014-05-01 | auto merge of #13877 : thestinger/rust/de-tilde-str-vec, r=alexcrichton | bors | -1/+1 |
| 2014-05-01 | remove leftover obsolete string literals | Daniel Micay | -1/+1 |
| 2014-04-28 | Deprecate the rev_iter pattern in all places where a DoubleEndedIterator is p... | Jonathan S | -17/+25 |
| 2014-04-28 | Provide an implementation of DoubleEndedIterator for the results of &[T]::spl... | Jonathan S | -26/+11 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -6/+7 |
| 2014-04-18 | std: Make ~[T] no longer a growable vector | Alex Crichton | -3/+3 |
| 2014-04-12 | std: update & de-~[] path's tests. | Huon Wilson | -57/+42 |
| 2014-04-12 | std: migrate path::windows to using StrBuf internally. | Huon Wilson | -64/+87 |
| 2014-04-12 | std: migrate path::unix to using Vec internally. | Huon Wilson | -64/+72 |
| 2014-04-11 | auto merge of #13395 : Ryman/rust/bytecontainer_impl_container, r=alexcrichton | bors | -46/+32 |
| 2014-04-11 | Simplify GenericPath::set_extension. | Kevin Butler | -34/+21 |
| 2014-04-11 | Parameterize contains_nul for BytesContainer. | Kevin Butler | -12/+11 |
| 2014-04-11 | libtest: rename `BenchHarness` to `Bencher` | Liigo Zhuang | -29/+29 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -11/+12 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -7/+7 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -2/+2 |
| 2014-03-25 | Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v... | Marvin Löbel | -4/+4 |
| 2014-03-23 | auto merge of #13090 : thestinger/rust/iter, r=Aatch | bors | -19/+22 |
| 2014-03-23 | iter: remove `to_owned_vec` | Daniel Micay | -19/+22 |
| 2014-03-23 | use TotalEq for HashMap | Daniel Micay | -2/+6 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -14/+14 |
| 2014-03-12 | std: allow io::File* structs to be hashable | Erick Tryzelaar | -6/+6 |
| 2014-03-12 | Use generic impls for `Hash` | Erick Tryzelaar | -8/+8 |
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -3/+3 |
| 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 |