| Age | Commit message (Expand) | Author | Lines |
| 2013-12-10 | libstd: Remove `Cell`s that were used because of `finally` by converting | Patrick Walton | -41/+63 |
| 2013-12-10 | librustpkg: Make `io::ignore_io_error()` use RAII; remove a few more | Patrick Walton | -21/+37 |
| 2013-12-10 | libstd: Remove some cells involved in | Patrick Walton | -18/+12 |
| 2013-12-10 | librustuv: RAII-ify `Local::borrow`, and remove some 12 Cells. | Patrick Walton | -159/+181 |
| 2013-12-10 | libextra: Another round of de-`Cell`-ing. | Patrick Walton | -228/+124 |
| 2013-12-10 | Implement PortReader and ChanWriter | Raphael Speyer | -11/+172 |
| 2013-12-09 | auto merge of #10840 : cmr/rust/any_docs2, r=huonw | bors | -1/+8 |
| 2013-12-09 | Add some Any docs. | Corey Richardson | -1/+8 |
| 2013-12-09 | auto merge of #10859 : huonw/rust/helper-dists, r=cmr | bors | -246/+568 |
| 2013-12-08 | std::rand: implement the student t distribution. | Huon Wilson | -1/+52 |
| 2013-12-08 | std::rand: implement the F distribution. | Huon Wilson | -1/+60 |
| 2013-12-08 | std::rand: implement the chi-squared distribution. | Huon Wilson | -2/+99 |
| 2013-12-08 | Remove dead codes | Kiet Tran | -165/+38 |
| 2013-12-07 | std::rand: implement the log-normal distribution. | Huon Wilson | -2/+58 |
| 2013-12-07 | std::rand: move normal and exponential to their own file. | Huon Wilson | -244/+303 |
| 2013-12-07 | auto merge of #10824 : huonw/rust/str-doc, r=alexcrichton | bors | -42/+321 |
| 2013-12-06 | auto merge of #10364 : Kimundi/rust/result_compose, r=alexcrichton | bors | -125/+44 |
| 2013-12-06 | Link rustllvm statically, and distribute a static snapshot | Alex Crichton | -0/+1 |
| 2013-12-07 | std::str: Add examples to the StrSlice trait. | Huon Wilson | -42/+321 |
| 2013-12-06 | Made Results API more composable | Marvin Löbel | -125/+44 |
| 2013-12-05 | auto merge of #10562 : ongardie/rust/master, r=brson | bors | -6/+7 |
| 2013-12-05 | auto merge of #10817 : alexcrichton/rust/sched-fix, r=brson | bors | -4/+49 |
| 2013-12-05 | Solve some nasty deschedulinging races with a lock | Alex Crichton | -4/+49 |
| 2013-12-05 | Fix documentation typo (divison operator is not backslash) | Alexandros Tasos | -2/+2 |
| 2013-12-04 | auto merge of #10796 : kballard/rust/revert-new-naming, r=alexcrichton | bors | -433/+432 |
| 2013-12-04 | Rename std::rt::deque::*::init() to *::new() | Kevin Ballard | -20/+20 |
| 2013-12-04 | Revert "libstd: Change `Path::new` to `Path::init`." | Kevin Ballard | -413/+412 |
| 2013-12-04 | auto merge of #10804 : alexcrichton/rust/less-dup, r=pcwalton | bors | -13/+5 |
| 2013-12-04 | auto merge of #10803 : vmx/rust/integer-decode, r=cmr | bors | -0/+60 |
| 2013-12-04 | Don't dup the stdio file descriptors. | Alex Crichton | -13/+5 |
| 2013-12-04 | Decode a float into integers | Volker Mische | -0/+60 |
| 2013-12-04 | std::str: s/from_utf8_slice/from_utf8/, to make the basic case shorter. | Huon Wilson | -36/+36 |
| 2013-12-04 | std::str: remove from_utf8. | Huon Wilson | -140/+37 |
| 2013-12-03 | Move std::util::ignore to std::prelude::drop | Steven Fackler | -12/+10 |
| 2013-12-03 | auto merge of #10747 : alexcrichton/rust/snapshots, r=cmr | bors | -56/+2 |
| 2013-12-03 | Register new snapshots | Alex Crichton | -56/+2 |
| 2013-12-03 | auto merge of #10768 : Blei/rust/logging-enabled-macros, r=alexcrichton | bors | -5/+20 |
| 2013-12-03 | add MutableVector::mut_split(self, pred) -> DoubleEndedIterator<&mut [T]> | Guillaume Pinot | -4/+110 |
| 2013-12-02 | Add a macro to check if logging at a given label is enabled | Philipp Brüschweiler | -5/+20 |
| 2013-12-02 | rename MutableVector::mut_split(at) to MutableVector::mut_split_at(at) | Guillaume Pinot | -6/+6 |
| 2013-12-01 | auto merge of #10756 : thestinger/rust/transmute, r=alexcrichton | bors | -7/+1 |
| 2013-12-01 | remove useless `transmute_immut` function | Daniel Micay | -7/+1 |
| 2013-11-30 | auto merge of #10739 : DaGenix/rust/mut-chunks, r=alexcrichton | bors | -0/+102 |
| 2013-11-30 | auto merge of #10733 : alexcrichton/rust/ignore-on-windows, r=pcwalton | bors | -0/+1 |
| 2013-11-30 | auto merge of #10738 : sfackler/rust/buffered-fixes, r=alexcrichton | bors | -10/+28 |
| 2013-11-30 | Implement DoubleEndedIterator for MutChunkIter. | Palmer Cox | -0/+29 |
| 2013-11-30 | Implement mut_chunks() method for MutableVector trait. | Palmer Cox | -0/+73 |
| 2013-11-30 | auto merge of #10528 : alexcrichton/rust/static-linking-v2, r=pcwalton | bors | -10/+59 |
| 2013-11-30 | Test fixes and merge conflicts | Alex Crichton | -0/+1 |
| 2013-11-30 | auto merge of #10737 : huonw/rust/with-cap, r=alexcrichton | bors | -1/+7 |