| Age | Commit message (Expand) | Author | Lines |
| 2014-12-18 | Delete rest of rustrt | Aaron Turon | -1/+1 |
| 2014-12-18 | Revise std::thread API to join by default | Aaron Turon | -34/+44 |
| 2014-12-18 | Fallout from new thread API | Aaron Turon | -135/+69 |
| 2014-12-18 | Remove rt::{mutex, exclusive} | Aaron Turon | -49/+62 |
| 2014-12-18 | Add blocking support module for channels | Aaron Turon | -308/+357 |
| 2014-12-18 | libs: merge librustrt into libstd | Aaron Turon | -19/+18 |
| 2014-12-18 | librustc: Always parse `macro!()`/`macro![]` as expressions if not | Patrick Walton | -268/+268 |
| 2014-12-15 | Standardize some usages of "which" in docstrings | Andrew Wagner | -6/+6 |
| 2014-12-14 | Mostly rote conversion of `proc()` to `move||` (and occasionally `Thunk::new`) | Niko Matsakis | -88/+88 |
| 2014-12-08 | librustc: Make `Copy` opt-in. | Niko Matsakis | -0/+2 |
| 2014-12-05 | Fall out of the std::sync rewrite | Alex Crichton | -19/+24 |
| 2014-12-05 | std: Rewrite the `sync` module | Alex Crichton | -0/+538 |
| 2014-11-26 | Fixup various places that were doing `&T+'a` and do `&(T+'a)` | Niko Matsakis | -1/+1 |
| 2014-11-24 | Merge libsync into libstd | Aaron Turon | -0/+4642 |
| 2014-06-11 | sync: Move underneath libstd | Alex Crichton | -4567/+0 |
| 2014-06-10 | Fix more misspelled comments and strings. | Joseph Crail | -1/+1 |
| 2014-06-08 | core: Rename `container` mod to `collections`. Closes #12543 | Brian Anderson | -1/+1 |
| 2014-06-06 | std: Deal with fallout of rtio changes | Alex Crichton | -2/+2 |
| 2014-05-30 | std: Rename {Eq,Ord} to Partial{Eq,Ord} | Alex Crichton | -2/+2 |
| 2014-05-24 | Fixes problems on systems with opaque mutex | Valerii Hiora | -13/+23 |
| 2014-05-22 | libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`. | Patrick Walton | -2/+2 |
| 2014-05-19 | std: Move comm primitives away from UnsafeArc | Alex Crichton | -23/+28 |
| 2014-05-11 | core: Remove the cast module | Alex Crichton | -8/+7 |
| 2014-05-07 | Test fixes and rebase conflicts | Alex Crichton | -2/+0 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -20/+29 |
| 2014-05-05 | std::comm: use Unsafe to avoid U.B. & -> &mut transmutes. | Huon Wilson | -34/+49 |
| 2014-05-05 | std: deprecate cast::transmute_mut. | Huon Wilson | -7/+12 |
| 2014-05-02 | Replace most ~exprs with 'box'. #11779 | Brian Anderson | -23/+23 |
| 2014-04-19 | Rewrite paragraph describing difference between try_send and send_opt | James Sanders | -4/+4 |
| 2014-04-18 | Fix a couple places in docs where try_send wasn't changed to send_opt | James Sanders | -2/+2 |
| 2014-04-18 | std: Make ~[T] no longer a growable vector | Alex Crichton | -2/+0 |
| 2014-04-16 | auto merge of #13465 : alexcrichton/rust/fix-comm-dox, r=brson | bors | -23/+77 |
| 2014-04-15 | std: Update documentation on the `comm` module | Alex Crichton | -23/+77 |
| 2014-04-13 | Make Result::{unwrap, unwrap_err} require Show | Steven Fackler | -1/+1 |
| 2014-04-10 | std: Make std::comm return types consistent | Alex Crichton | -155/+166 |
| 2014-04-06 | std: Ignore a flaky std::comm test | Alex Crichton | -1/+1 |
| 2014-04-02 | Fix fallout of requiring uint indices | Alex Crichton | -1/+1 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -20/+20 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -1/+1 |
| 2014-03-28 | syntax: Accept meta matchers in macros | Alex Crichton | -3/+3 |
| 2014-03-24 | comm: Implement synchronous channels | Alex Crichton | -2/+1217 |
| 2014-03-23 | std: Move NativeMutex from &mut self to &self | Alex Crichton | -1/+1 |
| 2014-03-22 | std::comm: Remove Freeze / NoFreeze | Flavio Percoco | -6/+4 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -2/+2 |
| 2014-03-13 | std: Rename Chan/Port types and constructor | Alex Crichton | -534/+535 |
| 2014-03-12 | std: Relax an assertion in oneshot selection | Alex Crichton | -7/+64 |
| 2014-03-06 | fix typos with with repeated words, just like this sentence. | Kang Seonghoon | -1/+1 |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -1/+1 |
| 2014-02-27 | std: Export the select! macro | Alex Crichton | -16/+0 |
| 2014-02-21 | auto merge of #12419 : huonw/rust/compiler-unsafe, r=alexcrichton | bors | -17/+13 |