| Age | Commit message (Expand) | Author | Lines |
| 2015-03-10 | Rollup merge of #23125 - danburkert:master, r=brson | Manish Goregaokar | -0/+63 |
| 2015-03-09 | Rename #[should_fail] to #[should_panic] | Steven Fackler | -3/+3 |
| 2015-03-06 | Implement std::error::Error for std::sync::mpsc error types | Dan Burkert | -0/+63 |
| 2015-03-03 | Add `: Box<_>` or `::Box<_>` type annotations to various places. | Felix S. Klock II | -6/+6 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -9/+9 |
| 2015-02-27 | Rollup merge of #22803 - huonw:field-stability, r=alexcrichton | Manish Goregaokar | -1/+1 |
| 2015-02-27 | Auto merge of #22573 - nwin:impl-debug-rwlock-weak, r=Manishearth | bors | -0/+28 |
| 2015-02-27 | Add some missing stability attributes on struct fields. | Huon Wilson | -1/+1 |
| 2015-02-26 | Implement `Debug` for `RwLock`, `arc::Weak` and `Mutex` | nwin | -0/+28 |
| 2015-02-25 | allow(deprecated) for TaskPool (fixup #22783) | Manish Goregaokar | -0/+3 |
| 2015-02-25 | Rollup merge of #22596 - alexcrichton:fix-some-impls, r=huonw | Manish Goregaokar | -16/+8 |
| 2015-02-25 | Rollup merge of #22783 - alexcrichton:deprecate-taskpool, r=alexcrichton | Manish Goregaokar | -5/+5 |
| 2015-02-24 | std: Recomend threadpool on crates.io for TaskPool | Alex Crichton | -2/+2 |
| 2015-02-24 | Fix integers in tests (fixup #22700) | Manish Goregaokar | -4/+4 |
| 2015-02-24 | Rollup merge of #22700 - nick29581:ints_hash, r=alexcrichton | Manish Goregaokar | -177/+177 |
| 2015-02-23 | int audit - std::sync | Nick Cameron | -177/+177 |
| 2015-02-23 | Use boxed functions instead of transmute | Stepan Koltsov | -8/+8 |
| 2015-02-21 | Remove `'static` bound from sync::mpsc, Mutex and RwLock. | Huon Wilson | -45/+45 |
| 2015-02-20 | std: Tidy up some `unsafe impl`s for `sync` | Alex Crichton | -16/+8 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -39/+39 |
| 2015-02-17 | Test fixes and rebase conflicts | Alex Crichton | -6/+6 |
| 2015-02-17 | rollup merge of #22319: huonw/send-is-not-static | Alex Crichton | -51/+51 |
| 2015-02-17 | Fallout from stabilization | Aaron Turon | -163/+163 |
| 2015-02-18 | Update the libraries to reflect Send loosing the 'static bound. | Huon Wilson | -51/+51 |
| 2015-02-16 | Deprecate std::sync::TaskPool | Aaron Turon | -5/+5 |
| 2015-02-15 | Rollup merge of #22297 - nagisa:spring-cleanup, r=alexcrichton | Manish Goregaokar | -8/+8 |
| 2015-02-13 | Remove a few uses of deprecated getenv | Simonas Kazlauskas | -8/+8 |
| 2015-02-13 | Improve documentation for `Select::new()`. | Steve Klabnik | -4/+11 |
| 2015-02-11 | rustc: Fix a number of stability lint holes | Alex Crichton | -17/+17 |
| 2015-02-06 | sync: Expose PoisonError::new | Keegan McAllister | -12/+14 |
| 2015-02-06 | sync: Add is_poisoned to Mutex and RwLock | Keegan McAllister | -0/+26 |
| 2015-02-06 | Rollup merge of #21991 - steveklabnik:gh21915, r=huonw | Manish Goregaokar | -1/+1 |
| 2015-02-06 | Rollup merge of #21925 - sfackler:allow-missing-copy, r=alexcrichton | Manish Goregaokar | -2/+0 |
| 2015-02-06 | Rollup merge of #21954 - jbcrail:fix-misspelled-comments, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-02-05 | Mention the queueueue-ness of mpsc. | Steve Klabnik | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -1/+1 |
| 2015-02-04 | Fix for misspelled comments. | Joseph Crail | -1/+1 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -3/+3 |
| 2015-02-04 | Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichton | bors | -0/+2 |
| 2015-02-03 | Switch missing_copy_implementations to default-allow | Steven Fackler | -2/+0 |
| 2015-02-04 | Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`. | Huon Wilson | -0/+2 |
| 2015-02-02 | `for x in xs.into_iter()` -> `for x in xs` | Jorge Aparicio | -1/+1 |
| 2015-01-30 | rollup merge of #21631: tbu-/isize_police | Alex Crichton | -50/+50 |
| 2015-01-30 | std: Stabilize the std::fmt module | Alex Crichton | -3/+3 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -50/+50 |
| 2015-01-29 | s/Show/Debug/g | Jorge Aparicio | -3/+3 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -10/+10 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -64/+64 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -1/+1 |
| 2015-01-27 | Merge remote-tracking branch 'rust-lang/master' | Brian Anderson | -2/+2 |