| Age | Commit message (Expand) | Author | Lines |
| 2016-02-17 | std: restructure rand os code into sys modules | Sean McArthur | -2/+93 |
| 2015-12-18 | Use the getentropy(2) syscall on OpenBSD | Michael McConville | -0/+1 |
| 2015-08-15 | std: Add issues to all unstable features | Alex Crichton | -1/+1 |
| 2015-08-11 | Register new snapshots | Alex Crichton | -3/+0 |
| 2015-08-03 | syntax: Implement #![no_core] | Alex Crichton | -0/+1 |
| 2015-05-28 | remove references to IoResult | Steve Klabnik | -1/+1 |
| 2015-04-14 | rand: Delete all doc tests | Alex Crichton | -168/+0 |
| 2015-04-14 | test: Fixup many library unit tests | Alex Crichton | -258/+0 |
| 2015-04-14 | std: Remove old_io/old_path/rand modules | Alex Crichton | -105/+7 |
| 2015-03-28 | Remove IteratorExt | Steven Fackler | -1/+1 |
| 2015-03-26 | Mass rename uint/int to usize/isize | Alex Crichton | -24/+24 |
| 2015-03-23 | Add #![feature] attributes to doctests | Brian Anderson | -0/+7 |
| 2015-03-13 | Remove explicit syntax highlight from docs. | Joseph Crail | -1/+1 |
| 2015-03-11 | Example -> Examples | Steve Klabnik | -1/+1 |
| 2015-03-09 | Rename #[should_fail] to #[should_panic] | Steven Fackler | -2/+2 |
| 2015-03-05 | Remove integer suffixes where the types in compiled code are identical. | Eduard Burtescu | -1/+1 |
| 2015-03-03 | Auto merge of #22532 - pnkfelix:arith-overflow, r=pnkfelix,eddyb | bors | -2/+2 |
| 2015-03-03 | Accommodate arith-overflow in `rand` and `std::rand`. | Felix S. Klock II | -2/+2 |
| 2015-03-02 | Use `const`s instead of `static`s where appropriate | Florian Zeitz | -5/+4 |
| 2015-02-18 | rollup merge of #22497: nikomatsakis/suffixes | Alex Crichton | -5/+5 |
| 2015-02-18 | Remove `i`, `is`, `u`, or `us` suffixes that are not necessary. | Niko Matsakis | -5/+5 |
| 2015-02-18 | Remove usage of .map(|&foo| foo) | Kevin Butler | -1/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -5/+5 |
| 2015-02-04 | Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichton | bors | -0/+3 |
| 2015-02-04 | Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`. | Huon Wilson | -0/+3 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -1/+1 |
| 2015-01-30 | Remove all `i` suffixes | Tobias Bucher | -14/+14 |
| 2015-01-29 | convert remaining `range(a, b)` to `a..b` | Jorge Aparicio | -1/+1 |
| 2015-01-29 | `for x in range(a, b)` -> `for x in a..b` | Jorge Aparicio | -8/+8 |
| 2015-01-29 | `range(a, b).foo()` -> `(a..b).foo()` | Jorge Aparicio | -2/+2 |
| 2015-01-28 | Merge remote-tracking branch 'origin/master' into rollup | Manish Goregaokar | -1/+1 |
| 2015-01-28 | Rollup merge of #21676 - Victory:fix-deprication-in-random, r=alexcrichton | Manish Goregaokar | -27/+27 |
| 2015-01-27 | Merge remote-tracking branch 'rust-lang/master' | Brian Anderson | -1/+1 |
| 2015-01-26 | Don't use if we can avoid it | Victory | -20/+20 |
| 2015-01-26 | cleanup depricated `uint` in rand mod and rand os | Victory | -27/+27 |
| 2015-01-26 | Fallout of io => old_io | Alex Crichton | -1/+1 |
| 2015-01-23 | Set unstable feature names appropriately | Brian Anderson | -1/+1 |
| 2015-01-21 | Remove 'since' from unstable attributes | Brian Anderson | -1/+1 |
| 2015-01-21 | Add 'feature' and 'since' to stability attributes | Brian Anderson | -1/+1 |
| 2015-01-17 | Register new snapshots. | Eduard Burtescu | -2/+2 |
| 2015-01-12 | Add note about TLS lookups in random() | Steve Klabnik | -1/+26 |
| 2015-01-08 | Improvements to feature staging | Brian Anderson | -1/+1 |
| 2015-01-07 | Test fixes and rebase conflicts | Alex Crichton | -1/+1 |
| 2015-01-08 | Rename `target_word_size` to `target_pointer_width` | Nick Cameron | -2/+2 |
| 2015-01-06 | More test fixes | Alex Crichton | -1/+1 |
| 2015-01-06 | core: split into fmt::Show and fmt::String | Sean McArthur | -2/+2 |
| 2015-01-05 | More test fixes! | Alex Crichton | -2/+2 |
| 2015-01-05 | Implement Clone for PRNGs | Simonas Kazlauskas | -1/+2 |
| 2015-01-03 | Remove deprecated functionality | Alex Crichton | -2/+2 |
| 2015-01-03 | sed -i -s 's/#\[deriving(/#\[derive(/g' **/*.rs | Jorge Aparicio | -1/+1 |