| Age | Commit message (Expand) | Author | Lines |
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -14/+14 |
| 2014-06-10 | Fix unclear wording of comment | theptrk | -1/+1 |
| 2014-06-06 | Rename Iterator::len to count | Aaron Turon | -6/+6 |
| 2014-05-30 | Rename OSRng to OsRng | Piotr Jawniak | -8/+8 |
| 2014-05-29 | std: Recreate a `rand` module | Alex Crichton | -0/+525 |
| 2014-03-12 | std: Move rand to librand. | Huon Wilson | -906/+0 |
| 2014-03-04 | Rename all variables that have uppercase characters in their names to use onl... | Palmer Cox | -4/+4 |
| 2014-02-20 | move extra::test to libtest | Liigo Zhuang | -1/+2 |
| 2014-01-31 | Introduce marker types for indicating variance and for opting out | Niko Matsakis | -4/+5 |
| 2014-01-11 | Remove re-exports of std::io::stdio::{print, println} in the prelude. | Brendan Zabarauskas | -1/+1 |
| 2014-01-07 | stdtest: Fix all leaked trait imports | Alex Crichton | -4/+2 |
| 2014-01-04 | Don't allow newtype structs to be dereferenced. #6246 | Brian Anderson | -10/+6 |
| 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 | -124/+81 |
| 2013-12-23 | std: Fix all code examples | Alex Crichton | -7/+8 |
| 2013-12-15 | std: fix spelling in docs. | Huon Wilson | -1/+1 |
| 2013-12-11 | Make 'self lifetime illegal. | Erik Price | -3/+3 |
| 2013-12-08 | Remove dead codes | Kiet Tran | -0/+1 |
| 2013-11-26 | test: Remove non-procedure uses of `do` from compiletest, libstd tests, | Patrick Walton | -10/+10 |
| 2013-11-22 | std::rand: move TaskRng off @mut. | Huon Wilson | -16/+29 |
| 2013-11-18 | std::rand: wrappers for floats from [0,1] and (0,1). | Huon Wilson | -0/+40 |
| 2013-11-01 | std::rand: share the benchmark counter among the whole module tree. | Huon Wilson | -11/+11 |
| 2013-10-23 | auto merge of #9810 : huonw/rust/rand3, r=alexcrichton | bors | -180/+78 |
| 2013-10-23 | std::rand: simplify/safe-ify the default Rng.fill_bytes. | Huon Wilson | -45/+44 |
| 2013-10-23 | std::rand: move Weighted to distributions. | Huon Wilson | -131/+0 |
| 2013-10-23 | std::rand: lengthen the RNG benchmarks. | Huon Wilson | -8/+20 |
| 2013-10-23 | std::rand: documentation & references. | Huon Wilson | -5/+26 |
| 2013-10-23 | std::rand: add distributions::Range for generating [lo, hi). | Huon Wilson | -37/+33 |
| 2013-10-22 | Drop the '2' suffix from logging macros | Alex Crichton | -5/+5 |
| 2013-10-17 | std: Move size/align functions to std::mem. #2240 | Brian Anderson | -2/+2 |
| 2013-10-15 | use element count in slices, not size in bytes | Daniel Micay | -5/+9 |
| 2013-10-10 | Fix usage of <float> in docs | Volker Mische | -1/+1 |
| 2013-10-09 | option: rewrite the API to use composition | Daniel Micay | -1/+1 |
| 2013-10-09 | std::rand: Minor clean-up of comments & add a missing default method. | Huon Wilson | -2/+5 |
| 2013-10-09 | std::rand: remove seed_task_rng and RUST_SEED. | Huon Wilson | -76/+9 |
| 2013-10-09 | std::rand: Make Rng.next_u32 non-default, waiting for #7771. | Huon Wilson | -6/+2 |
| 2013-10-09 | std::rand::reseeding: seed the reseeder in the SeedableRng impl. | Huon Wilson | -2/+1 |
| 2013-10-09 | Documentation & address minor point. | Huon Wilson | -4/+8 |
| 2013-10-09 | std::rand: remove `seed`. | Huon Wilson | -16/+2 |
| 2013-10-09 | std::rand: documentation additions & fixes. | Huon Wilson | -7/+23 |
| 2013-10-09 | std::rand: move the Rand impls into a separate file for neatness. | Huon Wilson | -167/+2 |
| 2013-10-09 | std::rand: add & split some tests. | Huon Wilson | -0/+20 |
| 2013-10-09 | std::rand: improve the task_rng code. | Huon Wilson | -19/+116 |
| 2013-10-09 | std::rand: Add a trait for seeding RNGs: SeedableRng. | Huon Wilson | -21/+85 |
| 2013-10-09 | std::rand: Add ReseedingRng, which will reseed an RNG after it generates a ce... | Huon Wilson | -0/+1 |
| 2013-10-09 | std::rand: add the StdRng wrapper for a blessed RNG. | Huon Wilson | -7/+54 |
| 2013-10-09 | std::rand: Add OSRng, ReaderRng wrappers around the OS RNG & generic Readers ... | Huon Wilson | -29/+93 |
| 2013-10-09 | std::rand: Add an implementation of ISAAC64. | Huon Wilson | -48/+48 |
| 2013-10-09 | std::rand: move the Isaac implementation to its own file. | Huon Wilson | -184/+9 |