| Age | Commit message (Expand) | Author | Lines |
| 2015-02-02 | remove unused mut qualifiers | Jorge Aparicio | -4/+2 |
| 2015-02-02 | `for x in xs.into_iter()` -> `for x in xs` | Jorge Aparicio | -6/+6 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -3/+3 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -138/+138 |
| 2015-02-02 | Omit integer suffix when unnecessary | Alfie John | -142/+142 |
| 2015-02-02 | Tweak some ‘expected…’ error messages | P1start | -60/+68 |
| 2015-02-01 | std: Remove extra type params on iter adaptors | Alex Crichton | -2/+2 |
| 2015-02-01 | Reject syntax like `use foo::bar::;` and `use foo:: as bar;` and keywords in ... | Potpourri | -3/+8 |
| 2015-02-01 | std: Add a new `env` module | Alex Crichton | -8/+8 |
| 2015-02-01 | openbsd support | Sébastien Marie | -2/+4 |
| 2015-01-31 | Fix end of TtDelimited span | Keegan McAllister | -1/+24 |
| 2015-02-01 | Make use of a binary operator's RHS type for LHS inference | Edward Wang | -0/+14 |
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -13/+13 |
| 2015-01-30 | Test fixes and rebase conflicts | Alex Crichton | -8/+7 |
| 2015-01-30 | rollup merge of #21713: alexcrichton/second-pass-fmt | Alex Crichton | -75/+61 |
| 2015-01-30 | rollup merge of #21718: alexcrichton/stabilize-from-str | Alex Crichton | -12/+13 |
| 2015-01-30 | rollup merge of #21704: FlaPer87/macro-reexport | Alex Crichton | -0/+7 |
| 2015-01-30 | std: Stabilize the std::fmt module | Alex Crichton | -75/+61 |
| 2015-01-30 | std: Stabilize FromStr and parse | Alex Crichton | -12/+13 |
| 2015-01-30 | fixes after rebase | Jorge Aparicio | -1/+0 |
| 2015-01-30 | s/while let/for/g now that #21245 has been fixed | Jorge Aparicio | -8/+4 |
| 2015-01-30 | custom message for refutable patterns in for loops | Jorge Aparicio | -2/+3 |
| 2015-01-30 | fix fallout | Jorge Aparicio | -4/+11 |
| 2015-01-30 | implement for loop desugaring | Jorge Aparicio | -3/+93 |
| 2015-01-30 | Change from core::ops::RangeFull to std::ops | Nick Cameron | -1/+1 |
| 2015-01-30 | Rename FullRange to RangeFull | Nick Cameron | -3/+3 |
| 2015-01-30 | Use absolute path to FullRange, rather than assuming it is in the prelude | Nick Cameron | -53/+65 |
| 2015-01-29 | Auto merge of #21677 - japaric:no-range, r=alexcrichton | bors | -151/+156 |
| 2015-01-29 | bring back `#[derive(Show)]` with a deprecation warning | Jorge Aparicio | -0/+8 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -128/+128 |
| 2015-01-29 | register snaphots | Jorge Aparicio | -2/+0 |
| 2015-01-29 | remove unused imports | Jorge Aparicio | -1/+0 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -4/+4 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -15/+15 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -1/+1 |
| 2015-01-29 | Feature gate macro_reexport. Fixes #20906 | Flavio Percoco | -0/+7 |
| 2015-01-29 | Rollup merge of 21662 - oli-obk:hashmap_enum_json, r=alexcrichton | Manish Goregaokar | -1/+1 |
| 2015-01-29 | Rollup merge of 21681 - japaric:no-warn, r=alexcrichton | Manish Goregaokar | -5/+1 |
| 2015-01-29 | Rollup merge of #21626 - Ms2ger:various-cleanup, r=eddyb | Manish Goregaokar | -31/+11 |
| 2015-01-28 | Auto merge of #21019 - nikomatsakis:issue-20871-ret-as-assoc-type, r=nrc | bors | -3/+12 |
| 2015-01-28 | Move return type an associated type of the `Fn*` traits. Mostly this involves... | Niko Matsakis | -3/+12 |
| 2015-01-28 | Remove unnecessary to_string() call. | Ms2ger | -1/+1 |
| 2015-01-28 | Remove a custom variant of iter::Cloned. | Ms2ger | -16/+3 |
| 2015-01-28 | Simplify the implementation of segments_name_eq. | Ms2ger | -14/+7 |
| 2015-01-28 | Auto merge of #21158 - alkor:issue-21131, r=nick29581 | bors | -6/+10 |
| 2015-01-27 | fix #[cfg(test)] warnings | Jorge Aparicio | -5/+1 |
| 2015-01-27 | Merge remote-tracking branch 'rust-lang/master' | Brian Anderson | -60/+61 |
| 2015-01-26 | Make '-A warnings' apply to all warnings, including feature gate warnings | Brian Anderson | -7/+15 |
| 2015-01-26 | std: Rename Writer::write to Writer::write_all | Alex Crichton | -3/+3 |
| 2015-01-26 | Fallout of io => old_io | Alex Crichton | -50/+50 |