| Age | Commit message (Expand) | Author | Lines |
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -19/+1 |
| 2014-03-07 | create a sensible comparison trait hierarchy | Daniel Micay | -2/+2 |
| 2014-03-04 | make `MutItems` iterator sound again | Daniel Micay | -9/+19 |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -43/+42 |
| 2014-02-28 | Improve vec `partition` and `partitioned` method doc. | Felix S. Klock II | -6/+5 |
| 2014-02-27 | std: Small cleanup and test improvement | Alex Crichton | -1/+1 |
| 2014-02-24 | std: make .swap_remove return Option<T>. | Huon Wilson | -20/+30 |
| 2014-02-23 | auto merge of #12311 : brson/rust/unstable, r=alexcrichton | bors | -2/+2 |
| 2014-02-23 | std: Move raw to std::raw | Brian Anderson | -2/+2 |
| 2014-02-23 | Move std::{trie, hashmap} to libcollections | Alex Crichton | -6/+5 |
| 2014-02-22 | Move std::num::Integer to libnum | Brendan Zabarauskas | -3/+3 |
| 2014-02-20 | Mass rename if_ok! to try! | Alex Crichton | -3/+3 |
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -1/+2 |
| 2014-02-15 | auto merge of #12298 : alexcrichton/rust/rustdoc-testing, r=sfackler | bors | -4/+4 |
| 2014-02-15 | auto merge of #12272 : alexcrichton/rust/snapshot, r=kballard | bors | -4/+2 |
| 2014-02-15 | std: clean up ptr a bit | Corey Richardson | -38/+38 |
| 2014-02-14 | Fix all code examples | Alex Crichton | -4/+4 |
| 2014-02-14 | Register new snapshots | Alex Crichton | -4/+2 |
| 2014-02-14 | return value/use extra::test::black_box in benchmarks | lpy | -8/+11 |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of... | JeremyLetang | -10/+11 |
| 2014-02-13 | Add some missing Show implementations in libstd | Brendan Zabarauskas | -0/+42 |
| 2014-02-11 | vec -- introduce local var to make clear what subportion is being borrowed | Niko Matsakis | -2/+2 |
| 2014-02-11 | std -- replaces uses where const borrows would be required | Niko Matsakis | -18/+21 |
| 2014-02-11 | Move replace and swap to std::mem. Get rid of std::util | Edward Wang | -10/+9 |
| 2014-02-09 | std: Stop parameterizing some memcpy functions over RawPtr | Brian Anderson | -8/+8 |
| 2014-02-09 | std: Add move_val_init to mem. Replace direct intrinsic usage | Brian Anderson | -6/+5 |
| 2014-02-07 | auto merge of #12029 : zkamsler/rust/merge-sort-allocations, r=huonw | bors | -5/+104 |
| 2014-02-07 | Reduced allocations in merge_sort for short vectors | Zach Kamsler | -5/+104 |
| 2014-02-05 | Implement clone() for TCP/UDP/Unix sockets | Alex Crichton | -1/+1 |
| 2014-02-04 | auto merge of #11951 : dmanescu/rust/reserve-rename, r=huonw | bors | -14/+14 |
| 2014-02-04 | Rename reserve to reserve_exact and reserve_at_least to reserve | David Manescu | -14/+14 |
| 2014-02-01 | auto merge of #11974 : huonw/rust/no-at-vec, r=pcwalton | bors | -60/+0 |
| 2014-02-02 | std,extra: remove use of & support for @[]. | Huon Wilson | -60/+0 |
| 2014-02-01 | auto merge of #11944 : nathanielherman/rust/vec_opt, r=alexcrichton | bors | -50/+52 |
| 2014-02-01 | auto merge of #11930 : bjz/rust/next_power_of_two, r=huonw | bors | -2/+2 |
| 2014-01-31 | Fix minor doc typos | Virgile Andreani | -1/+1 |
| 2014-01-31 | Introduce marker types for indicating variance and for opting out | Niko Matsakis | -9/+10 |
| 2014-02-01 | Make next_power_of_two generic for unsigned integers | Brendan Zabarauskas | -2/+2 |
| 2014-01-30 | Make mut_last return Option instead of failing on empty vector (and add a tes... | Nathaniel Herman | -4/+14 |
| 2014-01-30 | Make pop_ref and mut_pop_ref return Option instead of failing on empty vectors | Nathaniel Herman | -24/+20 |
| 2014-01-30 | Make shift_ref and mut_shift_ref return Option instead of failing | Nathaniel Herman | -24/+20 |
| 2014-01-28 | Rename ImmutableCopyableVector to ImmutableCloneableVector | Virgile Andreani | -2/+2 |
| 2014-01-28 | Rename OwnedCopyableVector to OwnedCloneableVector | Virgile Andreani | -2/+2 |
| 2014-01-28 | Rename CopyableVector to CloneableVector | Virgile Andreani | -5/+5 |
| 2014-01-25 | Uppercase numeric constants | Chris Wong | -3/+3 |
| 2014-01-23 | Update flip() to be rev(). | Sean Chalmers | -11/+11 |
| 2014-01-23 | Rename Invert to Flip - Issue 10632 | Sean Chalmers | -11/+11 |
| 2014-01-22 | vec: make unsafe indexing functions higher-level | Daniel Micay | -6/+6 |
| 2014-01-22 | Replace C types with Rust types in libstd, closes #7313 | Florian Hahn | -5/+4 |
| 2014-01-21 | [std::vec] Rename .remove_opt() to .remove(), drop the old .remove() behavior | Simon Sapin | -47/+13 |