| Age | Commit message (Expand) | Author | Lines |
| 2014-01-22 | auto merge of #11711 : alexcrichton/rust/issue-11683, r=brson | bors | -4/+58 |
| 2014-01-21 | [std::str] Remove the now unused not_utf8 condition. | Simon Sapin | -11/+3 |
| 2014-01-21 | [std::str] Rename from_utf8_owned_opt() to from_utf8_owned(), drop the old fr... | Simon Sapin | -46/+20 |
| 2014-01-21 | [std::str] Rename from_utf8_opt() to from_utf8(), drop the old from_utf8() be... | Simon Sapin | -50/+25 |
| 2014-01-21 | [std::path] Rename .container_as_str_opt() to .container_as_str(), drop the o... | Simon Sapin | -40/+11 |
| 2014-01-21 | [std::vec] Rename .remove_opt() to .remove(), drop the old .remove() behavior | Simon Sapin | -48/+14 |
| 2014-01-21 | [std::vec] Rename .shift_opt() to .shift(), drop the old .shift() behavior | Simon Sapin | -26/+11 |
| 2014-01-21 | [std::vec] Rename .pop_opt() to .pop(), drop the old .pop() behavior | Simon Sapin | -33/+17 |
| 2014-01-21 | [std::vec] Rename .last_opt() to .last(), drop the old .last() behavior | Simon Sapin | -28/+5 |
| 2014-01-21 | [std::vec] Rename .head_opt() to .head(), drop the old .head() behavior | Simon Sapin | -29/+6 |
| 2014-01-21 | [std::vec] Rename .get_opt() to .get() | Simon Sapin | -6/+6 |
| 2014-01-21 | auto merge of #11665 : alexcrichton/rust/zed-cleanup, r=brson | bors | -271/+0 |
| 2014-01-21 | Purge borrowck from libstd | Alex Crichton | -271/+0 |
| 2014-01-21 | Flag all TLS functions as inline(never) | Alex Crichton | -4/+58 |
| 2014-01-21 | Remove unnecessary parentheses. | Huon Wilson | -17/+17 |
| 2014-01-20 | Register new snapshots | Alex Crichton | -2/+1 |
| 2014-01-20 | auto merge of #11673 : omasanori/rust/sep-doc, r=alexcrichton | bors | -2/+2 |
| 2014-01-20 | Improve std::num::pow implementation | Brendan Zabarauskas | -42/+30 |
| 2014-01-20 | Add operator trait constraints to std::num::{Zero, One} and document their ap... | Brendan Zabarauskas | -56/+52 |
| 2014-01-19 | auto merge of #11649 : FlaPer87/rust/pow, r=cmr | bors | -37/+22 |
| 2014-01-19 | auto merge of #11643 : kballard/rust/path-root-path, r=erickt | bors | -4/+7 |
| 2014-01-20 | Fix misuse of character/byte in std::path. | OGINO Masanori | -2/+2 |
| 2014-01-19 | auto merge of #11642 : erickt/rust/path, r=huonw | bors | -41/+62 |
| 2014-01-19 | auto merge of #11635 : thestinger/rust/zero-size-alloc, r=alexcrichton | bors | -21/+31 |
| 2014-01-18 | Replace old pow_with_uint with the new pow func | Flavio Percoco | -43/+7 |
| 2014-01-18 | Added benchmark for pow and pow_with_uint | Flavio Percoco | -0/+21 |
| 2014-01-18 | Expose platform independent path separators | Erick Tryzelaar | -41/+62 |
| 2014-01-18 | auto merge of #11622 : bjz/rust/simplify-primitive-trait, r=brson | bors | -84/+31 |
| 2014-01-18 | auto merge of #11605 : alexcrichton/rust/issue-9582, r=brson | bors | -2/+2 |
| 2014-01-17 | Make WindowsPath::new("C:foo").root_path() return Some("C:") | Kevin Ballard | -4/+7 |
| 2014-01-18 | Rename iterators for consistency | Palmer Cox | -295/+295 |
| 2014-01-17 | handle zero-size allocations correctly | Daniel Micay | -21/+31 |
| 2014-01-17 | auto merge of #11503 : FlaPer87/rust/master, r=huonw | bors | -43/+71 |
| 2014-01-18 | std::trie: use unsafe code to give a 3x speed up to the iterator. | Huon Wilson | -39/+118 |
| 2014-01-18 | std::trie: remove each_{key,value}_reverse internal iterators. | Huon Wilson | -13/+1 |
| 2014-01-18 | Add FIXME comments regarding issue #11526. | Brendan Zabarauskas | -0/+22 |
| 2014-01-18 | Simplify std::num::Primitive trait definition | Brendan Zabarauskas | -84/+9 |
| 2014-01-17 | auto merge of #11598 : alexcrichton/rust/io-export, r=brson | bors | -106/+148 |
| 2014-01-17 | Tweak the interface of std::io | Alex Crichton | -106/+148 |
| 2014-01-17 | auto merge of #11585 : nikomatsakis/rust/issue-3511-rvalue-lifetimes, r=pcwalton | bors | -36/+98 |
| 2014-01-17 | Add a generic power function | Flavio Percoco | -43/+71 |
| 2014-01-17 | auto merge of #11479 : khodzha/rust/peekable_empty, r=brson | bors | -1/+15 |
| 2014-01-16 | Fix test to account for new temporary lifetime rules, which cause the channel... | Niko Matsakis | -1/+1 |
| 2014-01-16 | Forbid coercing unsafe functions to closures | Alex Crichton | -2/+2 |
| 2014-01-16 | auto merge of #11571 : derekchiang/rust/fix-task-docs, r=alexcrichton | bors | -7/+6 |
| 2014-01-16 | Remove typo | Niko Matsakis | -1/+1 |
| 2014-01-16 | auto merge of #11579 : kballard/rust/windows-path-join, r=erickt | bors | -2/+9 |
| 2014-01-16 | Fix some docs in std::rt::task | Derek Chiang | -7/+6 |
| 2014-01-15 | auto merge of #11548 : bjz/rust/bitwise, r=alexcrichton | bors | -39/+39 |
| 2014-01-15 | auto merge of #11565 : mozilla/rust/snapshot, r=huonw | bors | -246/+17 |