| Age | Commit message (Expand) | Author | Lines |
| 2013-09-20 | auto merge of #9320 : chris-morgan/rust/unreachable-macro-part-two-of-two-con... | bors | -5/+5 |
| 2013-09-19 | Clean up unused imports | Steven Fackler | -6/+1 |
| 2013-09-19 | Add Future::spawn_with | Steven Fackler | -0/+23 |
| 2013-09-19 | Modernize extra::future API | Steven Fackler | -72/+64 |
| 2013-09-19 | Removed future's destructor | Steven Fackler | -9/+0 |
| 2013-09-19 | auto merge of #9267 : Kimundi/rust/master, r=huonw | bors | -506/+533 |
| 2013-09-19 | Turned extra::getopts functions into methods | Marvin Löbel | -506/+533 |
| 2013-09-19 | auto merge of #9291 : jzelinskie/rust/remove-cond, r=alexcrichton | bors | -2/+2 |
| 2013-09-19 | Replace unreachable() calls with unreachable!(). | Chris Morgan | -5/+5 |
| 2013-09-18 | Register new snapshots | Alex Crichton | -59/+1 |
| 2013-09-18 | Remove and replace cond! Closes #9282. | Jimmy Zelinskie | -2/+2 |
| 2013-09-17 | auto merge of #9133 : dcrewi/rust/bigint-random-range, r=huonw | bors | -2/+140 |
| 2013-09-17 | Generate random big integers within a range | David Creswick | -2/+140 |
| 2013-09-17 | remove unnecessary transmutes | Daniel Micay | -1/+0 |
| 2013-09-17 | auto merge of #9244 : thestinger/rust/drop, r=catamorphism | bors | -16/+13 |
| 2013-09-16 | switch Drop to `&mut self` | Daniel Micay | -16/+13 |
| 2013-09-16 | auto merge of #9231 : cmr/rust/enum_encoding, r=catamorphism | bors | -15/+24 |
| 2013-09-16 | auto merge of #9211 : klutzy/rust/win32-fix, r=alexcrichton | bors | -9/+0 |
| 2013-09-16 | extra::json: use a different encoding for enums. | Corey Richardson | -15/+24 |
| 2013-09-16 | Have workcache::test put `foo.c` in the same directory it runs in. | Lindsey Kuper | -7/+16 |
| 2013-09-16 | extra::fileinput: Enable tests on Win32 | klutzy | -9/+0 |
| 2013-09-15 | Remove {uint,int,u64,i64,...}::from_str,from_str_radix | blake2-ppc | -8/+6 |
| 2013-09-15 | Use std::iter::range_step | blake2-ppc | -26/+18 |
| 2013-09-14 | auto merge of #9180 : blake2-ppc/rust/reduce-either, r=catamorphism | bors | -27/+25 |
| 2013-09-14 | auto merge of #9115 : erickt/rust/master, r=erickt | bors | -41/+88 |
| 2013-09-13 | Remove all usage of change_dir_locked | Alex Crichton | -94/+3 |
| 2013-09-14 | extra::workcache: Remodel the (internal) struct Work | blake2-ppc | -16/+16 |
| 2013-09-14 | extra::test: Use Result instead of Either. | blake2-ppc | -11/+9 |
| 2013-09-13 | auto merge of #9170 : alexcrichton/rust/flaky-fileinput, r=erickt | bors | -188/+0 |
| 2013-09-13 | Move glob tests to a run-pass test | Alex Crichton | -188/+0 |
| 2013-09-13 | auto merge of #9141 : alexcrichton/rust/ignore-fileinput, r=catamorphism | bors | -10/+23 |
| 2013-09-12 | syntax: add #[deriving(Default)] syntax extension | Erick Tryzelaar | -2/+42 |
| 2013-09-12 | std: Add a bunch of Default impls | Erick Tryzelaar | -0/+7 |
| 2013-09-12 | std: Rename {Option,Result}::chain{,_err}* to {and_then,or_else} | Erick Tryzelaar | -36/+36 |
| 2013-09-12 | std: Add Option.{and,and_then,or,or_else} | Erick Tryzelaar | -2/+2 |
| 2013-09-12 | std: rename Option::unwrap_or_default() to unwrap_or() | Erick Tryzelaar | -1/+1 |
| 2013-09-12 | auto merge of #8908 : tikue/rust/master, r=anasazi | bors | -2/+102 |
| 2013-09-12 | auto merge of #9131 : Dretch/rust/glob-range-patterns, r=alexcrichton | bors | -14/+126 |
| 2013-09-12 | auto merge of #9096 : huonw/rust/linenoise, r=brson | bors | -31/+73 |
| 2013-09-12 | Rewrite fileinput tests to use std::rt::io | Alex Crichton | -10/+23 |
| 2013-09-11 | Rendezvous stream for synchronous channel messaging | Tim Kuehn | -2/+102 |
| 2013-09-11 | auto merge of #9014 : dcrewi/rust/convert-between-bigints, r=anasazi | bors | -42/+130 |
| 2013-09-11 | Support character range patterns (e.g. [0-9], [a-z]), like other globs do. | Gareth Smith | -14/+126 |
| 2013-09-11 | extra: improvements & bug fixes to rl. | Huon Wilson | -18/+26 |
| 2013-09-11 | extra: stop rl from leaking each line that is read. | Huon Wilson | -1/+11 |
| 2013-09-11 | extra: use a mutex to wrap linenoise calls and make them threadsafe. | Huon Wilson | -18/+42 |
| 2013-09-11 | auto merge of #9007 : dcrewi/rust/random-bigints, r=huonw | bors | -0/+64 |
| 2013-09-09 | auto merge of #9062 : blake2-ppc/rust/vec-iterator, r=alexcrichton | bors | -5/+2 |
| 2013-09-10 | std::at_vec and vec: Unify build_sized, build_sized_opt into build | blake2-ppc | -5/+2 |
| 2013-09-09 | auto merge of #9034 : catamorphism/rust/rustpkg-workcache, r=metajack | bors | -20/+146 |