| Age | Commit message (Expand) | Author | Lines |
| 2013-08-09 | auto merge of #8296 : erickt/rust/remove-str-trailing-nulls, r=erickt | bors | -474/+993 |
| 2013-08-09 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -199/+637 |
| 2013-08-09 | auto merge of #8387 : brson/rust/nooldrt, r=brson | bors | -2119/+217 |
| 2013-08-09 | Remove the C++ runtime. Sayonara | Brian Anderson | -2119/+217 |
| 2013-08-09 | auto merge of #8176 : catamorphism/rust/rustpkg-extern-mod, r=catamorphism | bors | -2/+163 |
| 2013-08-09 | std/rustc/rustpkg/syntax: Support the `extern mod = ...` form | Tim Chevalier | -2/+163 |
| 2013-08-09 | auto merge of #8415 : brson/rust/newrt-local-heap-perf, r=pcwalton,brson | bors | -68/+92 |
| 2013-08-09 | std: more windows fixes to os.rs and run.rs | Erick Tryzelaar | -4/+9 |
| 2013-08-09 | auto merge of #8369 : yichoi/rust/arm-test, r=sanxiyn | bors | -4/+4 |
| 2013-08-09 | Fix Ipv6Addr to_str for ::1:x.x.x.x addresses | Stepan Koltsov | -1/+8 |
| 2013-08-09 | std: Fix perf of local allocations in newsched | Brian Anderson | -68/+92 |
| 2013-08-09 | Remove redundant Ord method impls. | OGINO Masanori | -54/+3 |
| 2013-08-08 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -274/+1840 |
| 2013-08-08 | auto merge of #8336 : stepancheg/rust/socket-addr-from-str, r=brson | bors | -70/+367 |
| 2013-08-08 | auto merge of #8356 : toddaaro/rust/ws, r=brson | bors | -63/+164 |
| 2013-08-08 | auto merge of #8385 : cmr/rust/big-rollup, r=alexcrichton | bors | -97/+135 |
| 2013-08-08 | Enabled workstealing in the scheduler. Previously we had one global work queu... | toddaaro | -63/+164 |
| 2013-08-08 | std: more fixes for os.rs for windows | Erick Tryzelaar | -2/+3 |
| 2013-08-08 | auto merge of #8245 : alexcrichton/rust/fmt2, r=graydon | bors | -2/+1331 |
| 2013-08-07 | std: import HANDLE for os::list_dir for windows | Erick Tryzelaar | -0/+1 |
| 2013-08-07 | (cleanup) Improve rtabort message for atomic-sleep. | Ben Blum | -1/+2 |
| 2013-08-07 | fix recv_ready for Port to take &self and not need to return a tuple. Close #... | Ben Blum | -7/+26 |
| 2013-08-07 | std: add missing #[inline] annotation to the f64 arithmetic trait impls. | Huon Wilson | -0/+4 |
| 2013-08-07 | Add weak_rng to get a random algo that puts more emphasis on speed than security | Jordi Boggiano | -0/+10 |
| 2013-08-07 | Document rand module with more emphasis on cryptographic security | Jordi Boggiano | -2/+12 |
| 2013-08-07 | Forbid `priv` where it has no effect | Alex Crichton | -23/+23 |
| 2013-08-07 | Implement DoubleEndedIterator on Range | Kevin Ballard | -54/+48 |
| 2013-08-07 | std: Fix for-range loops that can use iterators | blake2-ppc | -10/+10 |
| 2013-08-07 | Add initial support for a new formatting syntax | Alex Crichton | -2/+1331 |
| 2013-08-07 | Turn on the new runtime | Brian Anderson | -1/+1 |
| 2013-08-07 | Disable linked failure tests | Brian Anderson | -0/+25 |
| 2013-08-07 | std: Allow spawners to specify stack size | Brian Anderson | -49/+61 |
| 2013-08-07 | std::rt: Pull RUST_MIN_STACK from the environment | Brian Anderson | -3/+32 |
| 2013-08-07 | std::rt: 2MB stacks again | Brian Anderson | -1/+1 |
| 2013-08-07 | Merge remote-tracking branch 'remotes/origin/master' into remove-str-trailing... | Erick Tryzelaar | -141/+488 |
| 2013-08-07 | std: fix a bad type cast for in str.to_c_str() | Erick Tryzelaar | -1/+1 |
| 2013-08-07 | std: Make CString::new unsafe b/c it can mutate a *T ptr | Erick Tryzelaar | -2/+2 |
| 2013-08-07 | std: remove unnecessary test from c_str.drop and use safer transmute | Erick Tryzelaar | -2/+2 |
| 2013-08-07 | std: Fix c_str.iter() and add test | Erick Tryzelaar | -3/+20 |
| 2013-08-07 | auto merge of #8294 : erickt/rust/map-move, r=bblum | bors | -60/+92 |
| 2013-08-07 | auto merge of #8326 : thestinger/rust/iterator, r=alexcrichton | bors | -31/+89 |
| 2013-08-07 | std: removed option.take_map{,_default} | Erick Tryzelaar | -19/+5 |
| 2013-08-07 | core: option.map_consume -> option.map_move | Erick Tryzelaar | -37/+35 |
| 2013-08-07 | std: add result.map_move, result.map_err_move | Erick Tryzelaar | -12/+60 |
| 2013-08-07 | auto merge of #8305 : huonw/rust/triage-fixes, r=cmr | bors | -11/+14 |
| 2013-08-07 | std: adjust str::test_add so that the macro expands to all 3 items (#8012). | Huon Wilson | -11/+14 |
| 2013-08-07 | auto merge of #8323 : kballard/rust/saturating, r=thestinger | bors | -85/+167 |
| 2013-08-07 | std: run test fix for ARM android | Young-il Choi | -4/+4 |
| 2013-08-07 | auto merge of #8285 : huonw/rust/deriving+++, r=alexcrichton | bors | -3/+49 |
| 2013-08-06 | vec: use `offset_inbounds` for iterators | Daniel Micay | -5/+24 |