| Age | Commit message (Expand) | Author | Lines |
| 2015-02-18 | Implement RFC 580 | Aaron Turon | -2/+2 |
| 2015-02-18 | std: Stabilize the `hash` module | Alex Crichton | -0/+8 |
| 2015-02-18 | Convert required suffixes into a use of `as`. | Niko Matsakis | -2/+1 |
| 2015-02-17 | rollup merge of #22024: alexcrichton/ascii | Alex Crichton | -1/+1 |
| 2015-02-17 | rustc: Track stability of trait implementations | Alex Crichton | -1/+1 |
| 2015-02-17 | Rollup merge of #22364 - Manishearth:rfc-572-forbid-attr, r=nikomatsakis | Manish Goregaokar | -56/+9 |
| 2015-02-17 | Rollup merge of #22241 - kmcallister:macro-plugin-cleanup, r=sfackler | Manish Goregaokar | -1/+44 |
| 2015-02-17 | Add `Gated` attribute type | Manish Goregaokar | -2/+6 |
| 2015-02-16 | rustc: teach const_eval more about types. | Eduard Burtescu | -1/+1 |
| 2015-02-16 | Move ATTRIBUTE_WHITELIST and CRATE_ATTRS to KNOWN_ATTRIBUTES in syntax::featu... | Manish Goregaokar | -55/+4 |
| 2015-02-15 | Rollup merge of #22278 - nikomatsakis:rustc-error, r=nikomatsakis | Manish Goregaokar | -0/+1 |
| 2015-02-13 | Add `#[rustc_error]` annotation, which causes trans to signal an error | Niko Matsakis | -0/+1 |
| 2015-02-13 | Remove `_VALUE` from the float extremes constants. | Huon Wilson | -2/+2 |
| 2015-02-12 | Warn when linking a plugin into a non-plugin crate | Keegan McAllister | -1/+44 |
| 2015-02-11 | rollup merge of #22127: alexcrichton/stability-holes | Alex Crichton | -0/+5 |
| 2015-02-11 | rollup merge of #21881: richo/lint-no-mangle-const | Alex Crichton | -4/+35 |
| 2015-02-11 | rustc: Fix a number of stability lint holes | Alex Crichton | -0/+5 |
| 2015-02-09 | lint: Document the why and how of the no_mangle const lint | Richo Healey | -1/+4 |
| 2015-02-07 | Auto merge of #21505 - GuillaumeGomez:interned_string, r=alexcrichton | bors | -18/+18 |
| 2015-02-06 | Update to last version, remove "[]" as much as possible | GuillaumeGomez | -8/+8 |
| 2015-02-06 | librustc has been updated | GuillaumeGomez | -17/+17 |
| 2015-02-06 | Rollup merge of #21958 - brson:stable-features, r=alexcrichton | Manish Goregaokar | -0/+7 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -10/+10 |
| 2015-02-04 | Add a lint for writing `#[feature]` for stable features, warn by default. | Brian Anderson | -0/+7 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -1/+1 |
| 2015-02-03 | Switch missing_copy_implementations to default-allow | Steven Fackler | -1/+1 |
| 2015-02-02 | lint: Warn about no-mangled statics that are not exported | Richo Healey | -0/+15 |
| 2015-02-02 | lint: Deny #[no_mangle] const items | Richo Healey | -4/+17 |
| 2015-02-02 | rollup merge of #21830: japaric/for-cleanup | Alex Crichton | -25/+25 |
| 2015-02-02 | rollup merge of #21815: nagisa/overflowing-lints | Alex Crichton | -3/+3 |
| 2015-02-02 | rollup merge of #21800: brson/unused_features | Alex Crichton | -1/+1 |
| 2015-02-02 | rollup merge of #21362: aochagavia/copy_rawptr | Alex Crichton | -1/+9 |
| 2015-02-02 | `for x in xs.into_iter()` -> `for x in xs` | Jorge Aparicio | -5/+5 |
| 2015-02-02 | `for x in xs.iter_mut()` -> `for x in &mut xs` | Jorge Aparicio | -1/+1 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -19/+19 |
| 2015-02-02 | Do not warn when deriving `Copy` for raw pointers | Adolfo OchagavĂa | -1/+9 |
| 2015-02-01 | More deprecating of i/u suffixes in libraries | Alfie John | -2/+2 |
| 2015-01-31 | Mention the type in the overflowing literal lint | Simonas Kazlauskas | -3/+3 |
| 2015-01-30 | rustc: Make unused_features lint warn by default | Brian Anderson | -1/+1 |
| 2015-01-30 | Merge remote-tracking branch 'origin/master' into rollup | Alex Crichton | -0/+1 |
| 2015-01-30 | rollup merge of #21631: tbu-/isize_police | Alex Crichton | -1/+1 |
| 2015-01-30 | rollup merge of #21765: P1start/non-ascii-style-lints | Alex Crichton | -46/+67 |
| 2015-01-30 | rollup merge of #21718: alexcrichton/stabilize-from-str | Alex Crichton | -1/+1 |
| 2015-01-30 | rollup merge of #21495: richo/unexported-unmangled-lint | Alex Crichton | -0/+30 |
| 2015-01-30 | Auto merge of #21495 - richo:unexported-unmangled-lint, r=alexcrichton | bors | -0/+30 |
| 2015-01-30 | std: Stabilize FromStr and parse | Alex Crichton | -1/+1 |
| 2015-01-30 | custom message for refutable patterns in for loops | Jorge Aparicio | -0/+1 |
| 2015-01-30 | Use `#[rustc_paren_sugar]` as a more extensible way of deciding when | Niko Matsakis | -0/+1 |
| 2015-01-29 | lint: warn about #[no_mangle] fns that aren't exported | Richo Healey | -0/+30 |