| Age | Commit message (Expand) | Author | Lines |
| 2014-06-05 | std: Recreate a `collections` module | Alex Crichton | -2498/+0 |
| 2014-06-04 | collections: optimize `HashMap`. Add `DefaultResizePolicy`. | Piotr Czarnecki | -72/+117 |
| 2014-06-01 | std: Drop Total from Total{Eq,Ord} | Alex Crichton | -26/+26 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -9/+9 |
| 2014-05-30 | auto merge of #14524 : ahmedcharles/rust/to_string, r=alexcrichton | bors | -2/+2 |
| 2014-05-29 | std: Recreate a `rand` module | Alex Crichton | -2/+2 |
| 2014-05-29 | Change to_owned() to to_string(). | Ahmed Charles | -2/+2 |
| 2014-05-27 | auto merge of #14414 : richo/rust/features/nerf_unused_string_fns, r=alexcric... | bors | -5/+5 |
| 2014-05-27 | std: Remove String's to_owned | Richo Healey | -5/+5 |
| 2014-05-27 | collections: add Show impl test for HashMap | Erick Tryzelaar | -0/+14 |
| 2014-05-22 | Spelling/doc formatting fixes. | Huon Wilson | -1/+1 |
| 2014-05-15 | Updates with core::fmt changes | Alex Crichton | -8/+8 |
| 2014-05-16 | Work around parse error caused by #14240. | Chris Morgan | -2/+1 |
| 2014-05-15 | Use assertions in find_with_or_insert_with example | Chris Morgan | -3/+4 |
| 2014-05-15 | Rename HashMap.mangle to find_with_or_insert_with. | Chris Morgan | -22/+24 |
| 2014-05-15 | Tidy up the HashMap.mangle example. | Chris Morgan | -8/+7 |
| 2014-05-15 | Reinstate HashMap.mangle(). | Chris Morgan | -21/+57 |
| 2014-05-14 | Suppress warnings on 32bit platforms. | OGINO Masanori | -2/+2 |
| 2014-05-11 | hashmap: port to the new allocator API | Daniel Micay | -17/+13 |
| 2014-05-10 | rename `global_heap` -> `libc_heap` | Daniel Micay | -2/+2 |
| 2014-05-07 | std: Modernize the local_data api | Alex Crichton | -37/+33 |
| 2014-05-01 | Add debug_assert and debug_assert_eq macros | Steven Fackler | -12/+6 |
| 2014-05-01 | remove leftover obsolete string literals | Daniel Micay | -2/+2 |
| 2014-04-22 | auto merge of #13653 : jbcrail/rust/fix-comment-mistakes, r=alexcrichton | bors | -4/+4 |
| 2014-04-21 | Just some general cleanup in the HashMap module | Clark Gaebel | -112/+168 |
| 2014-04-21 | Fix misspellings in comments. | Joseph Crail | -4/+4 |
| 2014-04-19 | auto merge of #13614 : cgaebel/rust/master, r=brson | bors | -30/+66 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -5/+5 |
| 2014-04-18 | Reduce HashMap allocations. | Clark Gaebel | -30/+66 |
| 2014-04-15 | Add a default impl for Set::is_superset | Steven Fackler | -15/+0 |
| 2014-04-11 | libtest: rename `BenchHarness` to `Bencher` | Liigo Zhuang | -6/+6 |
| 2014-04-10 | auto merge of #13440 : huonw/rust/strbuf, r=alexcrichton | bors | -70/+119 |
| 2014-04-11 | Fix tests. Add Vec<u8> conversion to StrBuf. | Huon Wilson | -2/+10 |
| 2014-04-10 | libstd: Implement `StrBuf`, a new string buffer type like `Vec`, and | Patrick Walton | -70/+111 |
| 2014-04-09 | collections: replace all ~[T] with Vec<T>. | Huon Wilson | -11/+11 |
| 2014-04-04 | Fix fallout from std::libc separation | Corey Richardson | -1/+2 |
| 2014-04-02 | Fix fallout of requiring uint indices | Alex Crichton | -9/+9 |
| 2014-03-31 | collections: Switch field privacy as necessary | Alex Crichton | -23/+23 |
| 2014-03-30 | Rename `from_iterator` to `from_iter` for consistency. | Brian Anderson | -2/+2 |
| 2014-03-28 | Rename Pod into Copy | Flavio Percoco | -7/+7 |
| 2014-03-25 | Changed `iter::Extendable` and `iter::FromIterator` to take a `Iterator` by v... | Marvin Löbel | -6/+6 |
| 2014-03-23 | use TotalEq for HashMap | Daniel Micay | -30/+27 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -3/+3 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -2/+2 |
| 2014-03-14 | auto merge of #12867 : alexcrichton/rust/issue-12860, r=thestinger | bors | -31/+37 |
| 2014-03-13 | collections: Don't recurse in hashmap robin_hood | Alex Crichton | -31/+37 |
| 2014-03-13 | collections: move hashmap's example to the struct. | Huon Wilson | -53/+53 |
| 2014-03-12 | Performance-oriented hashtable. | Clark Gaebel | -589/+1407 |
| 2014-03-12 | Update users for the std::rand -> librand move. | Huon Wilson | -2/+2 |
| 2014-03-06 | collections: Correct with_capacity_and_hasher | Alex Crichton | -10/+11 |