| Age | Commit message (Expand) | Author | Lines |
| 2014-05-24 | std: minor simplification to sync::deque. | Huon Wilson | -5/+5 |
| 2014-05-21 | std,green: Mark some queue types as NoShare | Alex Crichton | -3/+9 |
| 2014-05-19 | std: Remove UnsafeArc | Alex Crichton | -218/+23 |
| 2014-05-19 | std: Move comm primitives away from UnsafeArc | Alex Crichton | -7/+11 |
| 2014-05-19 | std: Rebuild spsc with Unsafe/&self | Alex Crichton | -25/+26 |
| 2014-05-19 | std: Rebuild mpsc queue with Unsafe/&self | Alex Crichton | -8/+9 |
| 2014-05-19 | std: Rebuild mpmc queues on Unsafe/Arc | Alex Crichton | -23/+27 |
| 2014-05-19 | std: Rebuild sync::deque on Arc | Alex Crichton | -25/+27 |
| 2014-05-13 | core: Inherit the atomics module | Alex Crichton | -795/+21 |
| 2014-05-11 | sync::deque: port to the new allocator API | Daniel Micay | -15/+19 |
| 2014-05-11 | core: Remove the cast module | Alex Crichton | -33/+32 |
| 2014-05-08 | Handle fallout in iter, option, result, and sync::arc | Kevin Ballard | -3/+3 |
| 2014-05-08 | Rename slice::unzip() to vec::unzip() | Kevin Ballard | -2/+2 |
| 2014-05-07 | Test fixes and rebase conflicts | Alex Crichton | -1/+0 |
| 2014-05-06 | librustc: Remove `~EXPR`, `~TYPE`, and `~PAT` from the language, except | Patrick Walton | -19/+26 |
| 2014-05-02 | Replace most ~exprs with 'box'. #11779 | Brian Anderson | -25/+25 |
| 2014-05-01 | Add debug_assert and debug_assert_eq macros | Steven Fackler | -8/+4 |
| 2014-04-18 | Replace all ~"" with "".to_owned() | Richo Healey | -4/+4 |
| 2014-04-18 | std: Make ~[T] no longer a growable vector | Alex Crichton | -3/+5 |
| 2014-04-11 | Add more type signatures to the docs; tweak a few of them. | Huon Wilson | -1/+1 |
| 2014-04-10 | std,serialize: remove some internal uses of ~[]. | Huon Wilson | -14/+14 |
| 2014-04-03 | Add fetch_and, fetch_or, fetch_xor to AtomicInt, AtomicUint | Jonathan S | -1/+133 |
| 2014-03-31 | std: Switch field privacy as necessary | Alex Crichton | -24/+24 |
| 2014-03-28 | Convert most code to new inner attribute syntax. | Brian Anderson | -2/+2 |
| 2014-03-28 | Rename Pod into Copy | Flavio Percoco | -11/+11 |
| 2014-03-24 | std: Unignore atomic tests | Brian Anderson | -4/+2 |
| 2014-03-23 | auto merge of #13099 : FlaPer87/rust/master, r=huonw | bors | -934/+0 |
| 2014-03-23 | Register new snapshots | Flavio Percoco | -934/+0 |
| 2014-03-23 | iter: remove `to_owned_vec` | Daniel Micay | -3/+3 |
| 2014-03-20 | std: Update atomic documentation to remove 'mut' | Alex Crichton | -23/+23 |
| 2014-03-20 | std: Remove AtomicU64 | Brian Anderson | -52/+0 |
| 2014-03-20 | std: Make the generic atomics in `sync::atomics` private | Brian Anderson | -10/+10 |
| 2014-03-20 | std: Make the generic atomics take unsafe pointers | Brian Anderson | -45/+45 |
| 2014-03-20 | std: Make atomics immutable. #11583 | Brian Anderson | -42/+976 |
| 2014-03-20 | Make atomics interior Unsafe<T> | Flavio Percoco | -50/+60 |
| 2014-03-20 | Let ArcData use Unsafe<T> | Flavio Percoco | -4/+8 |
| 2014-03-20 | rename std::vec -> std::slice | Daniel Micay | -8/+8 |
| 2014-03-18 | auto merge of #12954 : brson/rust/atomicdocs, r=alexcrichton | bors | -68/+393 |
| 2014-03-18 | Relaxed the memory ordering on the implementation of UnsafeArc | Jonathan S | -7/+29 |
| 2014-03-17 | std: Improve docs for atomics. Fix two bugs | Brian Anderson | -68/+393 |
| 2014-03-16 | Remove AtomicFlag | Cadence Marseille | -41/+6 |
| 2014-03-14 | fix MIPS target | Jyun-Yan You | -0/+4 |
| 2014-03-13 | std: Rename Chan/Port types and constructor | Alex Crichton | -18/+18 |
| 2014-02-28 | std: Change assert_eq!() to use {} instead of {:?} | Alex Crichton | -1/+1 |
| 2014-02-28 | std: Add cfg(test) to UnsafeArc assertions | Alex Crichton | -4/+8 |
| 2014-02-23 | std: Move intrinsics to std::intrinsics. | Brian Anderson | -1/+1 |
| 2014-02-18 | Spellcheck library docs. | Huon Wilson | -2/+1 |
| 2014-02-15 | std: clean up ptr a bit | Corey Richardson | -1/+1 |
| 2014-02-11 | Rewrite channels yet again for upgradeability | Alex Crichton | -13/+16 |
| 2014-02-11 | Shuffle around ownership in concurrent queues | Alex Crichton | -267/+177 |