| Age | Commit message (Expand) | Author | Lines |
| 2013-11-22 | More Mut tests | Steven Fackler | -0/+38 |
| 2013-11-22 | Remove RcMut | Steven Fackler | -10/+14 |
| 2013-11-22 | Introduce Mut<T> to libstd | Steven Fackler | -0/+18 |
| 2013-11-22 | auto merge of #10605 : huonw/rust/ascii-ident-gate, r=pcwalton | bors | -0/+47 |
| 2013-11-23 | Put non-ascii identifiers behind a feature gate. | Huon Wilson | -0/+47 |
| 2013-11-22 | auto merge of #10583 : alexcrichton/rust/privacy-reexport, r=pcwalton | bors | -0/+15 |
| 2013-11-22 | Move more of the exportation burden into privacy | Alex Crichton | -0/+15 |
| 2013-11-22 | auto merge of #10606 : huonw/rust/lint-unsafe-in-macro, r=thestinger | bors | -0/+9 |
| 2013-11-22 | test: test that the `unsafe_block` lint picks up `unsafe` blocks in | Huon Wilson | -0/+9 |
| 2013-11-21 | auto merge of #10588 : huonw/rust/un@mutilate-task_rng, r=alexcrichton | bors | -0/+18 |
| 2013-11-22 | std::rand: move TaskRng off @mut. | Huon Wilson | -0/+18 |
| 2013-11-21 | add lint for `unsafe` blocks | Daniel Micay | -0/+20 |
| 2013-11-18 | libsyntax: Remove `~fn()` from the language | Patrick Walton | -15/+1 |
| 2013-11-18 | librustc: Convert `~fn()` to `proc()` everywhere. | Patrick Walton | -45/+11 |
| 2013-11-17 | auto merge of #10443 : alexcrichton/rust/meaninless-pub-priv, r=cmr | bors | -0/+26 |
| 2013-11-17 | Forbid privacy in inner functions | Alex Crichton | -0/+26 |
| 2013-11-17 | Better error message when using vectors in statics | Corey Richardson | -1/+18 |
| 2013-11-17 | auto merge of #10518 : huonw/rust/6911, r=alexcrichton | bors | -0/+4 |
| 2013-11-17 | auto merge of #10509 : cmr/rust/trait_name, r=alexcrichton | bors | -1/+1 |
| 2013-11-16 | auto merge of #10420 : sanxiyn/rust/path, r=cmr | bors | -0/+15 |
| 2013-11-16 | lint: _-prefixed variables don't get an unused-mut warning. | Huon Wilson | -0/+4 |
| 2013-11-16 | Adjust error message for method type mismatch | Corey Richardson | -1/+1 |
| 2013-11-16 | Show the name of the trait in the error message | Jaemin Moon | -1/+1 |
| 2013-11-14 | auto merge of #10018 : fhahn/rust/check-inferred-ints, r=alexcrichton | bors | -2/+54 |
| 2013-11-14 | auto merge of #9788 : geoffhill/rust/bare-fn-cast, r=pnkfelix | bors | -0/+21 |
| 2013-11-13 | auto merge of #10277 : dcrewi/rust/missing-doc-and-visibility-rules, r=alexcr... | bors | -8/+36 |
| 2013-11-13 | make missing_doc lint respect the visibility rules | David Creswick | -8/+36 |
| 2013-11-12 | auto merge of #10427 : alexcrichton/rust/no-xray, r=brson | bors | -5/+16 |
| 2013-11-12 | Check inferred integer literals for overflows, closes #4220 | Florian Hahn | -2/+54 |
| 2013-11-12 | Improve error message for breaks in blocks | Alex Crichton | -5/+16 |
| 2013-11-11 | Remove #[fixed_stack_segment] and #[rust_stack] | Alex Crichton | -49/+0 |
| 2013-11-11 | Fix path parsing | Seo Sanghyeon | -0/+15 |
| 2013-11-08 | Fix pretty printer when there are multiple lifetime parameters | Niko Matsakis | -1/+1 |
| 2013-11-08 | Add new tests showing multiple lifetime parameters in use | Niko Matsakis | -2/+41 |
| 2013-11-08 | Address comments from @pnkfelix (thanks for the detailed review) | Niko Matsakis | -24/+63 |
| 2013-11-08 | Update various tests and libraries that were incorrectly | Niko Matsakis | -75/+112 |
| 2013-11-08 | Move comparing of impl methods against trait from collect to check. | Niko Matsakis | -3/+3 |
| 2013-11-08 | Introduce new variance inference pass that replaces (and generalizes) old | Niko Matsakis | -208/+213 |
| 2013-11-08 | Create a new pass to resolve named lifetimes; rscope is not only | Niko Matsakis | -0/+90 |
| 2013-11-08 | auto merge of #10355 : huonw/rust/deriving-field-spans, r=alexcrichton | bors | -0/+83 |
| 2013-11-08 | auto merge of #10344 : brson/rust/atomiccopy, r=alexcrichton | bors | -0/+31 |
| 2013-11-08 | syntax::ext: Make type errors in deriving point to the field itself. | Huon Wilson | -0/+83 |
| 2013-11-07 | std: Make atomic types non-copyable. Closes #8380 | Brian Anderson | -0/+31 |
| 2013-11-07 | auto merge of #10243 : mattcarberry/rust/master, r=brson | bors | -0/+17 |
| 2013-11-07 | add `from_send` to Rc, since #9509 is fixed | Daniel Micay | -0/+19 |
| 2013-11-06 | auto merge of #10289 : nikomatsakis/rust/issue-10157-TypeContents-refactor, r... | bors | -0/+127 |
| 2013-11-06 | fix some cfail test cases for arm | sh8281.kim | -4/+9 |
| 2013-11-05 | Make TypeContents consider the type `T` to be reachable via `*T` pointers | Niko Matsakis | -0/+115 |
| 2013-11-05 | Refactor TypeContents to be more scrutable. In particular, create coarser bits | Niko Matsakis | -0/+12 |
| 2013-11-04 | Add tests for variadic foreign functions. | Luqman Aden | -0/+102 |