| Age | Commit message (Expand) | Author | Lines |
| 2014-05-27 | std: Rename strbuf operations to string | Richo Healey | -2/+2 |
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -6/+7 |
| 2014-05-24 | core: rename strbuf::StrBuf to string::String | Richo Healey | -2/+2 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -4/+4 |
| 2014-05-20 | core: Stabilize the mem module | Alex Crichton | -7/+9 |
| 2014-05-15 | Make Vec.truncate() resilient against failure in Drop | Kevin Ballard | -5/+40 |
| 2014-05-11 | core: Remove the cast module | Alex Crichton | -34/+48 |
| 2014-05-10 | vec: factor out some deallocation code | Daniel Micay | -9/+12 |
| 2014-05-10 | vec: move some code inside alloc_or_realloc | Daniel Micay | -7/+5 |
| 2014-05-10 | fix Vec<ZeroSizeType> | Daniel Micay | -2/+15 |
| 2014-05-10 | initial port of the exchange allocator to jemalloc | Daniel Micay | -1/+1 |
| 2014-05-10 | use jemalloc to implement Vec<T> | Daniel Micay | -27/+46 |
| 2014-05-08 | Move partition/partitioned/concat/connect tests back into slice | Kevin Ballard | -26/+4 |
| 2014-05-08 | Add a mechanism to convert from Vec<T> to ~[T] | Kevin Ballard | -1/+73 |
| 2014-05-08 | Handle fallout for vector addition | Kevin Ballard | -1/+11 |
| 2014-05-08 | Move slice::raw::from_buf_raw() to vec::raw::from_buf() | Kevin Ballard | -1/+36 |
| 2014-05-08 | Rename slice::unzip() to vec::unzip() | Kevin Ballard | -0/+33 |
| 2014-05-08 | More fallout from removing FromIterator on ~[T] | Kevin Ballard | -0/+38 |
| 2014-05-07 | core: Move Option::expect to libstd from libcore | Alex Crichton | -1/+1 |
| 2014-05-07 | core: Inherit non-allocating slice functionality | Alex Crichton | -0/+1 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -3/+3 |
| 2014-05-02 | Replace most ~exprs with 'box'. #11779 | Brian Anderson | -2/+2 |
| 2014-05-01 | remove leftover obsolete string literals | Daniel Micay | -3/+3 |
| 2014-04-28 | Fixed typo in std::vec | Adolfo Ochagavía | -1/+1 |
| 2014-04-21 | Fix misspellings in comments. | Joseph Crail | -2/+2 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -6/+6 |
| 2014-04-18 | std: Make ~[T] no longer a growable vector | Alex Crichton | -19/+19 |
| 2014-04-16 | Make Vec::clone and slice::to_owned failure-safe | James Miller | -7/+4 |
| 2014-04-16 | Improve the copying code for slices and Vec | James Miller | -1/+20 |
| 2014-04-11 | std: Fix iteration over vectors of 0-size values | Alex Crichton | -2/+46 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -1/+2 |
| 2014-04-08 | Register new snapshots | Alex Crichton | -0/+1 |
| 2014-04-04 | Added grow_fn and retain to Vec | Michael Darakananda | -1/+64 |
| 2014-04-03 | std: override clone_from for Vec. | Huon Wilson | -4/+52 |
| 2014-04-01 | Reimplement Vec::push_all* with .extend | Stepan Koltsov | -6/+2 |
| 2014-04-01 | Vec::reserve_exact should not shrink | Stepan Koltsov | -1/+1 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -5/+5 |
| 2014-03-31 | auto merge of #13221 : thestinger/rust/append, r=alexcrichton | bors | -32/+32 |
| 2014-03-31 | vec: convert `append` and `append_one` to methods | Daniel Micay | -32/+32 |
| 2014-03-30 | Rename `from_iterator` to `from_iter` for consistency. | Brian Anderson | -1/+1 |
| 2014-03-30 | Removed deprecated functions `map` and `flat_map` for vectors and slices. | Marvin Löbel | -7/+0 |
| 2014-03-25 | Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v... | Marvin Löbel | -6/+6 |
| 2014-03-24 | comm: Implement synchronous channels | Alex Crichton | -7/+2 |
| 2014-03-23 | auto merge of #13096 : sstewartgallus/rust/cleanup-test-warnings, r=huonw | bors | -1/+0 |
| 2014-03-23 | This commit cleans up a few test warnings | Steven Stewart-Gallus | -1/+0 |
| 2014-03-23 | std: remove the `equals` method from `TotalEq`. | Huon Wilson | -6/+1 |
| 2014-03-23 | Add Vec::mut_slice_from(), mut_slice_to(), and mut_split_at() | Eunchong Yu | -0/+122 |
| 2014-03-21 | auto merge of #13016 : huonw/rust/new-opt-vec, r=cmr | bors | -0/+13 |
| 2014-03-22 | Migrate all users of opt_vec to owned_slice, delete opt_vec. | Huon Wilson | -0/+13 |
| 2014-03-21 | libstd: Add some methods to `Vec<T>`. | Patrick Walton | -17/+19 |