| Age | Commit message (Expand) | Author | Lines |
| 2012-07-06 | tutorial: Add some work on borrowed pointers | Brian Anderson | -0/+27 |
| 2012-07-06 | tutorial: Expand the section on datatypes | Brian Anderson | -27/+61 |
| 2012-07-06 | tutorial: Fix a test-breaking typo | Brian Anderson | -1/+1 |
| 2012-07-06 | Add 'class' and 'new' to codemirror-rust.js | Brian Anderson | -2/+2 |
| 2012-07-06 | tutorial: Remove some trivia | Brian Anderson | -4/+1 |
| 2012-07-06 | First step on #2826, accept ^ for ty_ptr. | Graydon Hoare | -2/+3 |
| 2012-07-06 | Fix the indenter script to know about the annoying ~ in the front of log stri... | Michael Sullivan | -2/+2 |
| 2012-07-06 | Be less eager about implicit borrowing when doing method resolution. Closes #... | Michael Sullivan | -15/+67 |
| 2012-07-06 | For #2229, recognize 'again' in place of 'cont', final change pending snapshot. | Graydon Hoare | -34/+34 |
| 2012-07-06 | Bank protocol example from blog post | Eric Holk | -0/+70 |
| 2012-07-06 | Added a k-nucleotide version that uses pipes. 31% speedup. | Eric Holk | -0/+289 |
| 2012-07-06 | tutorial: Reduce header level for do/for loop sections | Brian Anderson | -2/+2 |
| 2012-07-06 | Rip out a bunch more append code from trans. | Michael Sullivan | -90/+0 |
| 2012-07-06 | Rename dvec::from_elt to dvec::from_elem. Closes #2792. | Michael Sullivan | -2/+2 |
| 2012-07-06 | tutorial: Minor tweak | Brian Anderson | -7/+6 |
| 2012-07-06 | tutorial: Add a section on the memory model | Brian Anderson | -0/+76 |
| 2012-07-06 | Remove tvec::trans_add | Eric Holk | -45/+0 |
| 2012-07-06 | paper over #2586 by not failing when the key is not found | Niko Matsakis | -0/+4 |
| 2012-07-06 | Move string append to libraries. Closes #2710. | Michael Sullivan | -25/+59 |
| 2012-07-06 | tutorial: Minor tweaks to intro | Brian Anderson | -7/+7 |
| 2012-07-06 | tutorial: Add a language overview to the introduction | Brian Anderson | -0/+27 |
| 2012-07-06 | Removing locked queue port/chan prototype. | Eric Holk | -164/+1 |
| 2012-07-06 | Updating tests to use pipes. | Eric Holk | -487/+71 |
| 2012-07-06 | Fixing an infinite type, updating code to match new Early parser, remembering... | Eric Holk | -3/+72 |
| 2012-07-06 | pingpong protocol parses, although I should probably rewrite this to use Paul... | Eric Holk | -15/+38 |
| 2012-07-06 | Recursively expand items, and keep expansion stack, per Paul's code review co... | Eric Holk | -3/+10 |
| 2012-07-06 | Adding token tree nonterminals to earley parser. | Eric Holk | -2/+2 |
| 2012-07-06 | You can have any protocol you want, provided it's pingpong. | Eric Holk | -7/+627 |
| 2012-07-06 | Plumbing and parsing for item-position macros. | Eric Holk | -10/+135 |
| 2012-07-06 | Select on pipes. | Eric Holk | -384/+284 |
| 2012-07-06 | Port future to pipes. Graph500 is about 21% faster now. | Eric Holk | -24/+112 |
| 2012-07-06 | Pipes sleep and wake properly. | Eric Holk | -11/+132 |
| 2012-07-06 | Enabling pipes for all stages, and updating closure syntax. | Eric Holk | -21/+17 |
| 2012-07-06 | Moved pipes runtime support to libcore, and add a test that will help verify ... | Eric Holk | -194/+270 |
| 2012-07-06 | Contracts work well enough to do the message ring benchmark, and it's really ... | Eric Holk | -0/+327 |
| 2012-07-06 | send only takes one data argument. | Eric Holk | -2/+2 |
| 2012-07-06 | Macro and iface tricks to simulate self move. | Eric Holk | -0/+307 |
| 2012-07-06 | Progress towards pipes. | Eric Holk | -37/+61 |
| 2012-07-06 | An example using pipes with most of the synchronization code in place. | Eric Holk | -0/+247 |
| 2012-07-06 | First example of a program using pipes. | Eric Holk | -2/+112 |
| 2012-07-06 | Basic functionality for new ports and chans | Eric Holk | -1/+1 |
| 2012-07-06 | cargo: Fix building dependencies | Erick Tryzelaar | -2/+2 |
| 2012-07-05 | Ignore a should_fail test on windows | Brian Anderson | -0/+1 |
| 2012-07-05 | Fix test that was using rust_task_allow_kill incorrectly | Brian Anderson | -2/+4 |
| 2012-07-05 | A new `times` method on numeric types | Ben Striegel | -17/+91 |
| 2012-07-05 | Allow soft failure of the macro parser. | Paul Stansifer | -14/+23 |
| 2012-07-05 | Add new syntax for interpolation and repetition, and allow the transcription ... | Paul Stansifer | -39/+70 |
| 2012-07-05 | Start letting the parser catch interpolated ASTs. | Paul Stansifer | -6/+95 |
| 2012-07-05 | Update the new macro demo. | Paul Stansifer | -7/+21 |
| 2012-07-05 | Macro By Example transcription of token trees with interpolations and dotdotd... | Paul Stansifer | -32/+141 |