| Age | Commit message (Expand) | Author | Lines |
| 2015-03-02 | Rollup merge of #22504 - GuillaumeGomez:audit-integer-libcore, r=Manishearth | Manish Goregaokar | -33/+9 |
| 2015-03-01 | Remove int/uint from libstd/lib.rs | Guillaume Gomez | -33/+9 |
| 2015-03-01 | remove some compiler warnings | Tshepang Lekhonkhobe | -5/+3 |
| 2015-03-01 | Make Int::pow() take exp as u32 instead usize | Guillaume Gomez | -0/+11 |
| 2015-02-27 | Rollup merge of #22835 - tshepang:remove-some-warnings, r=jakub- | Manish Goregaokar | -3/+3 |
| 2015-02-27 | Rollup merge of #22817 - jmesmon:result-or-type, r=huonw | Manish Goregaokar | -2/+2 |
| 2015-02-26 | remove some compiler warnings | Tshepang Lekhonkhobe | -3/+3 |
| 2015-02-25 | Result::or : avoid over-specializing the type | Cody P Schafer | -2/+2 |
| 2015-02-25 | Rollup merge of #22747 - krdln:fix-parsing-minus, r=alexcrichton | Manish Goregaokar | -0/+5 |
| 2015-02-24 | Use arrays instead of vectors in tests | Vadim Petrochenkov | -51/+40 |
| 2015-02-24 | Add missing `fn` | Michał Krasnoborski | -1/+1 |
| 2015-02-24 | Stop parsing "-" as integer, fixes #22745 | Michał Krasnoborski | -0/+5 |
| 2015-02-22 | Auto merge of #22466 - Kimundi:str_pattern_ai_safe, r=aturon | bors | -1/+267 |
| 2015-02-20 | try to reduce bajillion warnings | Alexis | -22/+31 |
| 2015-02-20 | Fix tidy and rebase fallout | Marvin Löbel | -2/+144 |
| 2015-02-20 | Added a Pattern impl that delegates to the dereference of a type. | Marvin Löbel | -0/+10 |
| 2015-02-20 | Refactored code into Searcher traits with naive implementations | Marvin Löbel | -3/+3 |
| 2015-02-20 | Added string pattern traits and basic implementantions | Marvin Löbel | -0/+7 |
| 2015-02-20 | Added benchmarks for string pattern matching functions | Marvin Löbel | -0/+107 |
| 2015-02-18 | rollup merge of #22286: nikomatsakis/variance-4b | Alex Crichton | -3/+3 |
| 2015-02-18 | rollup merge of #22502: nikomatsakis/deprecate-bracket-bracket | Alex Crichton | -7/+7 |
| 2015-02-18 | Round 1 fixes and rebase conflicts | Alex Crichton | -2/+0 |
| 2015-02-18 | Replace all uses of `&foo[]` with `&foo[..]` en masse. | Niko Matsakis | -7/+7 |
| 2015-02-18 | rollup merge of #22497: nikomatsakis/suffixes | Alex Crichton | -31/+31 |
| 2015-02-18 | rollup merge of #22480: alexcrichton/hashv3 | Alex Crichton | -14/+10 |
| 2015-02-18 | rollup merge of #22287: Ryman/purge_carthographers | Alex Crichton | -22/+22 |
| 2015-02-18 | std: Stabilize the `hash` module | Alex Crichton | -14/+10 |
| 2015-02-18 | Fallout: tests. As tests frequently elide things, lots of changes | Niko Matsakis | -1/+1 |
| 2015-02-18 | Rewrite `Unique<T>` so that it is covariant in T, implies `NonZero` and owner... | Niko Matsakis | -2/+2 |
| 2015-02-18 | Convert required suffixes into a use of `as`. | Niko Matsakis | -31/+31 |
| 2015-02-18 | Remove usage of .map(|&foo| foo) | Kevin Butler | -21/+21 |
| 2015-02-18 | Opt for .cloned() over .map(|x| x.clone()) etc. | Kevin Butler | -1/+1 |
| 2015-02-17 | Fallout from stabilization | Aaron Turon | -3/+3 |
| 2015-02-15 | Fix rollup (remove slicing_syntax) | Manish Goregaokar | -1/+1 |
| 2015-02-12 | Auto merge of #21895 - alfie:libcoretest, r=pnkfelix | bors | -112/+112 |
| 2015-02-11 | Add core::marker::PhantomData. | Felix S. Klock II | -1/+1 |
| 2015-02-10 | Deprecating i/u suffixes in libcoretest | Alfie John | -112/+112 |
| 2015-02-10 | rollup merge of #22142: Kimundi/unsized_unique | Alex Crichton | -0/+9 |
| 2015-02-10 | Made the `ptr::Unique` type accept unsized types, to allow for use cases | Marvin Löbel | -0/+9 |
| 2015-02-08 | Fix std::ops::Range size_hint and ExactSizeIterator impls | Ulrik Sverdrup | -0/+1 |
| 2015-02-05 | cleanup: replace `as[_mut]_slice()` calls with deref coercions | Jorge Aparicio | -6/+6 |
| 2015-02-04 | remove all kind annotations from closures | Jorge Aparicio | -8/+9 |
| 2015-02-04 | Auto merge of #21892 - huonw:deprecate-rand, r=alexcrichton | bors | -0/+1 |
| 2015-02-04 | Deprecate in-tree `rand`, `std::rand` and `#[derive(Rand)]`. | Huon Wilson | -0/+1 |
| 2015-02-02 | rollup merge of #21854: alexcrichton/try-borrow | Alex Crichton | -0/+4 |
| 2015-02-02 | `for x in xs.iter()` -> `for x in &xs` | Jorge Aparicio | -7/+7 |
| 2015-02-01 | std: Deprecate RefCell::{try_borrow, try_borrow_mut} | Alex Crichton | -0/+4 |
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -7/+7 |
| 2015-01-30 | Test fixes and rebase conflicts | Alex Crichton | -13/+13 |
| 2015-01-30 | rollup merge of #21631: tbu-/isize_police | Alex Crichton | -195/+195 |