| Age | Commit message (Expand) | Author | Lines |
| 2017-10-14 | std: Set probe length tag on cloned hashmaps | Manish Goregaokar | -0/+1 |
| 2017-10-14 | std: Get rid of hash_offet in RawTable | Manish Goregaokar | -16/+15 |
| 2017-09-30 | address some `FIXME`s whose associated issues were marked as closed | Niv Kaminer | -2/+2 |
| 2017-08-15 | use field init shorthand EVERYWHERE | Zack M. Davis | -7/+7 |
| 2017-08-01 | Fixed extra cases found in better checking. | Isaac van Bakel | -1/+1 |
| 2017-07-22 | Add conversions from references to NonZero pointers, Unique, and Shared | Simon Sapin | -1/+1 |
| 2017-07-22 | Rename {NonZero,Shared,Unique}::new to new_unchecked | Simon Sapin | -3/+3 |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -6/+5 |
| 2017-05-20 | migrate everything to using mem::needs_drop | Alexis Beingessner | -2/+1 |
| 2017-05-04 | Deprecate heap::EMPTY in favour of Unique::empty or otherwise. | Alexis Beingessner | -1/+2 |
| 2017-05-04 | fallout from NonZero/Unique/Shared changes | Alexis Beingessner | -9/+12 |
| 2017-04-04 | Simplify HashMap Bucket interface | arthurprs | -173/+151 |
| 2017-03-22 | Simplify hash table drops | Josh Stone | -47/+18 |
| 2017-03-17 | Stabilize rc_raw feature, closes #37197 | Aaron Turon | -1/+1 |
| 2017-03-11 | Implement placement-in protocol for `HashMap` | Charlie Fan | -0/+27 |
| 2017-03-03 | Reduce size overhead of adaptative hashmap | arthurprs | -8/+66 |
| 2017-02-08 | std: Add retain method for HashMap and HashSet | f001 | -7/+74 |
| 2016-12-28 | Replace uses of `#[unsafe_destructor_blind_to_params]` with `#[may_dangle]` | Andrew Paseltiner | -2/+1 |
| 2016-12-18 | Implement `fmt::Debug` for all structures in libstd. | Corey Farwell | -0/+29 |
| 2016-11-02 | Rollup merge of #37498 - sanxiyn:unused-type-alias, r=eddyb | Jonathan Turner | -4/+0 |
| 2016-10-31 | Remove unused type aliases | Seo Sanghyeon | -4/+0 |
| 2016-10-17 | hashmap: Store hashes as usize internally | Ulrik Sverdrup | -25/+44 |
| 2016-10-12 | Cache conscious hashmap table | arthurprs | -88/+68 |
| 2016-10-06 | Auto merge of #36753 - srinivasreddy:hash, r=nrc | bors | -16/+12 |
| 2016-09-28 | Remove stage0 hacks | Brian Anderson | -1/+0 |
| 2016-09-27 | run rustfmt on libstd/collections/hash folder | Srinivas Reddy Thatiparthy | -16/+12 |
| 2016-08-24 | Remove drop flags from structs and enums implementing Drop. | Eduard Burtescu | -2/+2 |
| 2016-08-04 | Made vec_deque::Drain, hash_map::Drain, and hash_set::Drain covariant | Thomas Garcia | -6/+10 |
| 2016-06-11 | run rustfmt on libstd/collections/hash folder | Srinivas Reddy Thatiparthy | -167/+178 |
| 2016-03-30 | Make HashMap's RawBucket covariant | Jonathan S | -18/+23 |
| 2016-03-22 | f clarification, docs | Piotr Czarnecki | -2/+5 |
| 2016-03-22 | f Put and DerefMut | Piotr Czarnecki | -14/+26 |
| 2016-03-21 | f dead code | Piotr Czarnecki | -10/+0 |
| 2016-03-05 | Use consistent syntax | Piotr Czarnecki | -3/+3 |
| 2016-03-05 | Refactor fn robin_hood | Piotr Czarnecki | -13/+39 |
| 2016-03-05 | Refactor fn Bucket::next | Piotr Czarnecki | -15/+7 |
| 2016-03-05 | Add `InternalEntry` for use in all searches. | Piotr Czarnecki | -8/+10 |
| 2016-03-05 | Rename 'distance' -> 'displacement' | Piotr Czarnecki | -1/+1 |
| 2016-02-16 | Avoid iteration when dropping `HashMap`s whose items don't need dropping | Andrew Paseltiner | -1/+4 |
| 2016-01-26 | std: Stabilize custom hasher support in HashMap | Alex Crichton | -4/+3 |
| 2016-01-16 | std: Stabilize APIs for the 1.7 release | Alex Crichton | -1/+0 |
| 2015-12-18 | Fix the fallout | Vadim Petrochenkov | -1/+1 |
| 2015-10-06 | Add RFC 1238's `unsafe_destructor_blind_to_params` (UGEH) where needed. | Felix S. Klock II | -0/+1 |
| 2015-09-29 | Remove redundant uses of Iterator::by_ref() | Ulrik Sverdrup | -1/+1 |
| 2015-09-11 | std: Internalize almost all of `std::rt` | Alex Crichton | -8/+5 |
| 2015-08-14 | Auto merge of #27822 - arielb1:inline-round-take-2, r=Gankro | bors | -0/+1 |
| 2015-08-13 | Mark round_up_to_next as inline | arielb1 | -0/+1 |
| 2015-08-11 | Add HashSet and HashMap tests | Guillaume Gomez | -3/+14 |
| 2015-08-10 | Add Send/Sync traits on Iter struct in hash/table | Guillaume Gomez | -0/+3 |
| 2015-06-24 | Make `align_of` behave like `min_align_of`. | Huon Wilson | -11/+11 |