| Age | Commit message (Expand) | Author | Lines |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -8/+8 |
| 2015-03-24 | Reject specialized Drop impls. | Felix S. Klock II | -1/+1 |
| 2015-03-24 | Added `T:Send` bound to `Queue<T>` to avoid specialized `Drop` impl. | Felix S. Klock II | -1/+1 |
| 2015-03-24 | Added `T:Send` bound to `Packet<T>` to avoid specialized `Drop` impl. | Felix S. Klock II | -2/+2 |
| 2015-03-24 | added `T:Send` bound to `Mutex<T>` to avoid specialized Drop impl. | Felix S. Klock II | -1/+1 |
| 2015-03-24 | Added `T:Send` bound to `Queue<T>` to avoid specialized Drop impl. | Felix S. Klock II | -2/+2 |
| 2015-03-24 | Added `T:Send` bound to `sync::mpsc::Receiver` and `sync::mpsc::Sender`. | Felix S. Klock II | -16/+16 |
| 2015-03-23 | rollup merge of #23598: brson/gate | Alex Crichton | -0/+11 |
| 2015-03-23 | rollup merge of #23541: aturon/stab-error | Alex Crichton | -6/+6 |
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -0/+11 |
| 2015-03-23 | Stabilize the Error trait | Aaron Turon | -6/+6 |
| 2015-03-21 | Fix documentation for std::sync::mutex: into_guard -> into_inner | Barosl Lee | -2/+2 |
| 2015-03-20 | don't use Result::ok just to be able to use unwrap/unwrap_or | Oliver Schneider | -1/+1 |
| 2015-03-13 | Remove explicit syntax highlight from docs. | Joseph Crail | -6/+6 |
| 2015-03-11 | Example -> Examples | Steve Klabnik | -11/+11 |
| 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-08 | Remove unneeded `Send` bounds from `std::sync::mpsc`. | Huon Wilson | -29/+29 |
| 2015-03-08 | Remove unneeded `Send`/`Sync` bounds from `Mutex`/`RwLock`. | Huon Wilson | -5/+7 |
| 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 |