| Age | Commit message (Expand) | Author | Lines |
| 2015-07-29 | Rollup merge of #27326 - steveklabnik:doc_show_use, r=Gankro | Steve Klabnik | -2/+4 |
| 2015-07-27 | std: Deprecate a number of unstable features | Alex Crichton | -0/+9 |
| 2015-07-27 | Show appropriate feature flags in docs | Steve Klabnik | -2/+4 |
| 2015-07-13 | Implement IndexMut for String and str. | Simon Sapin | -0/+4 |
| 2015-07-13 | Add more tests for AsciiExt::is_ascii | Simon Sapin | -8/+11 |
| 2015-07-13 | Add tests for AsciiExt::make_ascii_*case, including on String. | Simon Sapin | -0/+45 |
| 2015-06-17 | std: Split the `std_misc` feature | Alex Crichton | -5/+1 |
| 2015-06-10 | Removed many pointless calls to *iter() and iter_mut() | Joshua Landau | -1/+1 |
| 2015-04-21 | Model lexer: Fix remaining issues | Piotr Czarnecki | -2/+0 |
| 2015-04-13 | pluralize doc comment verbs and add missing periods | Andrew Paseltiner | -6/+6 |
| 2015-03-27 | Test fixes and rebase conflicts, round 3 | Alex Crichton | -0/+2 |
| 2015-03-24 | Add examples for std::ascii | Steve Klabnik | -4/+96 |
| 2015-03-13 | Deprecate range, range_step, count, distributions | Aaron Turon | -2/+2 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -6/+6 |
| 2015-02-23 | Add documentation to associated types in libcore, libstd | Ivan Petkov | -0/+1 |
| 2015-02-17 | std: Stabilize the `ascii` module | Alex Crichton | -70/+122 |
| 2015-02-15 | Audit integer types in libunicode, libcore/(char, str) and libstd/ascii | Vadim Petrochenkov | -2/+2 |
| 2015-02-05 | Use `for` instead of `while` in ascii.rs tests | Kevin Yap | -19/+7 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -2/+2 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-01-23 | Set unstable feature names appropriately | Brian Anderson | -10/+10 |
| 2015-01-21 | Remove 'since' from unstable attributes | Brian Anderson | -10/+10 |
| 2015-01-21 | Add 'feature' and 'since' to stability attributes | Brian Anderson | -10/+20 |
| 2015-01-08 | Improvements to feature staging | Brian Anderson | -8/+8 |
| 2015-01-05 | rollup merge of #20556: japaric/no-for-sized | Alex Crichton | -2/+1 |
| 2015-01-05 | remove unused `Sized` imports | Jorge Aparicio | -1/+0 |
| 2015-01-05 | sed -i -s 's/ for Sized?//g' **/*.rs | Jorge Aparicio | -1/+1 |
| 2015-01-05 | Fix misleading name in AsciiExt docs | Zbigniew Siciarz | -1/+1 |
| 2015-01-03 | Remove deprecated functionality | Alex Crichton | -1/+0 |
| 2015-01-02 | std: Stabilize the prelude module | Alex Crichton | -1/+1 |
| 2015-01-02 | Fallout - change array syntax to use `;` | Nick Cameron | -2/+2 |
| 2014-12-27 | auto merge of #19916 : SimonSapin/rust/ascii-reform, r=sfackler | bors | -568/+115 |
| 2014-12-27 | Fix fallout | Nick Cameron | -1/+1 |
| 2014-12-25 | std::ascii: Use u8 methods rather than the maps directly. | Simon Sapin | -16/+14 |
| 2014-12-25 | Remove Ascii, AsciiCast, OwnedAsciiCast, AsciiStr, IntoBytes, IntoString. | Simon Sapin | -522/+71 |
| 2014-12-24 | Rename to_ascii_{lower,upper} to to_ascii_{lower,upper}case, per #14401 | Simon Sapin | -37/+37 |
| 2014-12-23 | Fix some spelling errors. | Huon Wilson | -2/+2 |
| 2014-12-21 | Fallout of std::str stabilization | Alex Crichton | -1/+1 |
| 2014-12-20 | Fix fallout of removing import_shadowing in tests. | Eduard Burtescu | -1/+0 |
| 2014-12-19 | libstd: use `#[deriving(Copy)]` | Jorge Aparicio | -4/+1 |
| 2014-12-18 | librustc: Always parse `macro!()`/`macro![]` as expressions if not | Patrick Walton | -8/+8 |
| 2014-12-17 | auto merge of #19761 : nick29581/rust/coerce-double, r=nikomatsakis | bors | -5/+5 |
| 2014-12-16 | Remove the double auto-ref on arrays/strings as receivers | Nick Cameron | -5/+5 |
| 2014-12-14 | std: Collapse SlicePrelude traits | Alex Crichton | -1/+1 |
| 2014-12-13 | libstd: use unboxed closures | Jorge Aparicio | -1/+4 |
| 2014-12-11 | Register new snapshots | Alex Crichton | -1/+1 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+3 |
| 2014-12-08 | auto merge of #19378 : japaric/rust/no-as-slice, r=alexcrichton | bors | -26/+26 |
| 2014-12-06 | libstd: remove unnecessary `to_string()` calls | Jorge Aparicio | -21/+21 |