| Age | Commit message (Expand) | Author | Lines |
| 2014-03-30 | Rename `from_iterator` to `from_iter` for consistency. | Brian Anderson | -1/+1 |
| 2014-03-29 | auto merge of #13183 : erickt/rust/remove-list, r=alexcrichton | bors | -1/+1 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 |
| 2014-03-28 | std and green: fix some warnings | Erick Tryzelaar | -1/+1 |
| 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 #13102 : huonw/rust/totaleq-deriving, r=thestinger | bors | -22/+5 |
| 2014-03-23 | std: remove the `equals` method from `TotalEq`. | Huon Wilson | -22/+5 |
| 2014-03-23 | iter: remove `to_owned_vec` | Daniel Micay | -1/+1 |
| 2014-03-21 | libstd: Add some methods to `Vec<T>`. | Patrick Walton | -0/+1 |
| 2014-03-20 | rename std::vec_ng -> std::vec | Daniel Micay | -1/+1 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -14/+14 |
| 2014-03-18 | remove duplicate methods in impls | Corey Richardson | -3/+0 |
| 2014-03-16 | `strdup_uniq` doesn't have to be `pub`. | Lindsey Kuper | -2/+1 |
| 2014-03-12 | Use generic impls for `Hash` | Erick Tryzelaar | -4/+7 |
| 2014-03-10 | libstd: Update docs for `slice_shift_char` and {shift,pop}_{char,byte} | Piotr Czarnecki | -17/+10 |
| 2014-03-10 | libstd: Add unit tests for `slice_shift_char` | Piotr Czarnecki | -0/+12 |
| 2014-03-10 | libstd: Change `slice_shift_char`, `shift_char`, `pop_char`, `shift_byte` and... | Piotr Czarnecki | -34/+53 |
| 2014-03-08 | Removed DeepClone. Issue #12698. | Michael Darakananda | -25/+1 |
| 2014-03-05 | Str::slice_chars() is O(end), not O(end - begin) | Simon Sapin | -2/+2 |
| 2014-03-04 | Rename all variables that have uppercase characters in their names to use onl... | Palmer Cox | -9/+9 |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -4/+4 |
| 2014-02-24 | Remove std::default::Default from the prelude | Brendan Zabarauskas | -0/+1 |
| 2014-02-23 | Remove all ToStr impls, add Show impls | Alex Crichton | -16/+0 |
| 2014-02-23 | Merge remote-tracking branch 'huonw/inline-helpers' | Brian Anderson | -0/+1 |
| 2014-02-24 | Transition to new `Hash`, removing IterBytes and std::to_bytes. | Huon Wilson | -7/+4 |
| 2014-02-23 | std: Move raw to std::raw | Brian Anderson | -2/+2 |
| 2014-02-23 | std: mark two helper functions #[inline]. | Huon Wilson | -0/+1 |
| 2014-02-21 | auto merge of #12421 : Hywan/rust/api_doc, r=alexcrichton | bors | -3/+3 |
| 2014-02-21 | libstd: Implement some convenience methods on vectors | Patrick Walton | -0/+13 |
| 2014-02-20 | Fix some typos. | Ivan Enderlin | -3/+3 |
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -1/+2 |
| 2014-02-18 | auto merge of #12317 : huonw/rust/utf16, r=alexcrichton | bors | -45/+291 |
| 2014-02-19 | str: add a function for truncating a vector of u16 at NUL. | Huon Wilson | -0/+44 |
| 2014-02-18 | std: convert first_non_utf8_byte to use the iterator. | Huon Wilson | -61/+11 |
| 2014-02-18 | std::str: safen and optimize is_utf8. | Huon Wilson | -2/+77 |
| 2014-02-18 | std: make str::from_utf16 return an Option. | Huon Wilson | -18/+36 |
| 2014-02-17 | std: decode even numbered non-BMP planes in the UTF-16 decoder. | Huon Wilson | -2/+5 |
| 2014-02-17 | str: provide lossy UTF-16 support. | Huon Wilson | -23/+133 |
| 2014-02-17 | std: convert str::from_utf16 to an external iterator. | Huon Wilson | -27/+38 |
| 2014-02-17 | std: iteratize str::is_utf16 & add tests. | Huon Wilson | -18/+78 |
| 2014-02-17 | Remove CloneableTuple and ImmutableTuple traits | Brendan Zabarauskas | -3/+3 |
| 2014-02-14 | Fix all code examples | Alex Crichton | -1/+1 |
| 2014-02-14 | return value/use extra::test::black_box in benchmarks | lpy | -3/+3 |
| 2014-02-13 | remove duplicate function from std::ptr (is_null, is_not_null, offset, mut_of... | JeremyLetang | -8/+7 |
| 2014-02-13 | Add some missing Show implementations in libstd | Brendan Zabarauskas | -0/+2 |
| 2014-02-11 | str -- borrow fields of self for use in closure since self.iter is borrowed | Niko Matsakis | -5/+7 |
| 2014-02-07 | Delete send_str, rewrite clients on top of MaybeOwned<'static> | Kevin Ballard | -63/+234 |
| 2014-02-07 | Tweak from_utf8_lossy to return a new MaybeOwned enum | Kevin Ballard | -27/+94 |
| 2014-02-06 | Add new function str::from_utf8_lossy() | Kevin Ballard | -6/+179 |
| 2014-02-04 | auto merge of #11951 : dmanescu/rust/reserve-rename, r=huonw | bors | -21/+15 |