| Age | Commit message (Expand) | Author | Lines |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -31/+25 |
| 2014-01-07 | Fix remaining cases of leaking imports | Alex Crichton | -0/+3 |
| 2014-01-07 | std: Fill in all missing imports | Alex Crichton | -5/+14 |
| 2014-01-06 | Remove some unnecessary type casts | Florian Hahn | -1/+1 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -27/+28 |
| 2013-12-29 | auto merge of #11134 : lucab/rust/lucab/libstd-doc, r=cmr | bors | -1/+1 |
| 2013-12-27 | std: uniform modules titles for doc | Luca Bruno | -1/+1 |
| 2013-12-26 | std::rand: remove the `fn main()` from the examples. | Huon Wilson | -174/+113 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -13/+14 |
| 2013-12-20 | std: silence warnings when compiling test. | Huon Wilson | -0/+3 |
| 2013-12-19 | std::vec: remove .as_muf_buf, replaced by .as_mut_ptr & .len. | Huon Wilson | -3/+1 |
| 2013-12-16 | Fallout of rewriting std::comm | Alex Crichton | -7/+3 |
| 2013-12-15 | auto merge of #10984 : huonw/rust/clean-raw, r=cmr | bors | -6/+6 |
| 2013-12-15 | std::vec: convert to(_mut)_ptr to as_... methods on &[] and &mut []. | Huon Wilson | -2/+2 |
| 2013-12-15 | std::vec: move pointless `raw::get` and `unsafe_get` functions. | Huon Wilson | -4/+4 |
| 2013-12-15 | std: fix spelling in docs. | Huon Wilson | -4/+4 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -9/+9 |
| 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 | -0/+1 |
| 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-04 | Revert "libstd: Change `Path::new` to `Path::init`." | Kevin Ballard | -1/+1 |
| 2013-11-29 | libstd: Change `Path::new` to `Path::init`. | Patrick Walton | -1/+1 |
| 2013-11-26 | libstd: Fix Win32 and other bustage. | Patrick Walton | -2/+2 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -18/+18 |
| 2013-11-26 | libstd: Remove all non-`proc` uses of `do` from libstd | Patrick Walton | -5/+5 |
| 2013-11-26 | librustc: Remove remaining uses of `&fn()` in favor of `||`. | Patrick Walton | -6/+8 |
| 2013-11-24 | auto merge of #10603 : alexcrichton/rust/no-linked-failure, r=brson | bors | -1/+1 |
| 2013-11-24 | Remove linked failure from the runtime | Alex Crichton | -1/+1 |
| 2013-11-22 | std::rand: move TaskRng off @mut. | Huon Wilson | -30/+43 |
| 2013-11-18 | std::rand: wrappers for floats from [0,1] and (0,1). | Huon Wilson | -39/+122 |
| 2013-11-11 | Move std::rt::io to std::io | Alex Crichton | -4/+4 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -3/+6 |
| 2013-11-03 | Fill out the remaining functionality in io::file | Alex Crichton | -4/+4 |
| 2013-11-03 | Remove all blocking std::os blocking functions | Alex Crichton | -3/+5 |
| 2013-11-01 | auto merge of #10223 : huonw/rust/gamma, r=cmr | bors | -18/+234 |
| 2013-11-01 | auto merge of #10213 : telotortium/rust/rand-fill_bytes-stack-overflow, r=huonw | bors | -1/+21 |
| 2013-11-01 | std::rand: share the benchmark counter among the whole module tree. | Huon Wilson | -24/+21 |
| 2013-11-01 | std::rand: Implement the Gamma distribution. | Huon Wilson | -0/+219 |
| 2013-11-01 | std::rand: Move distributions to a subfolder. | Huon Wilson | -0/+0 |
| 2013-10-31 | Fix infinite recursion in `fill_bytes()` | Robert Irelan | -1/+21 |
| 2013-10-31 | std::rand: correct an off-by-one in the Ziggurat code. | Huon Wilson | -136/+3 |
| 2013-10-28 | Remove the extension traits for Readers/Writers | Alex Crichton | -5/+4 |
| 2013-10-23 | auto merge of #9810 : huonw/rust/rand3, r=alexcrichton | bors | -232/+823 |
| 2013-10-23 | std::rand: seed ISAAC with no transmutes. | Huon Wilson | -7/+16 |
| 2013-10-23 | std::rand: use "nothing up your sleeve numbers" for ISAAC tests. | Huon Wilson | -18/+18 |
| 2013-10-23 | std::rand: simplify/safe-ify the default Rng.fill_bytes. | Huon Wilson | -45/+44 |