| Age | Commit message (Expand) | Author | Lines |
| 2015-03-18 | std: Stabilize marker::MarkerTrait | Alex Crichton | -0/+1 |
| 2015-03-18 | std: Add missing stability on Range | Alex Crichton | -3/+4 |
| 2015-03-18 | Rollup merge of #23428 - Manishearth:ast-doc, r=huon | Manish Goregaokar | -15/+157 |
| 2015-03-18 | Rollup merge of #23455 - Ryman:trim_matches_doc, r=steveklabnik | Manish Goregaokar | -2/+2 |
| 2015-03-18 | Rollup merge of #23450 - alexcrichton:fix-sockaddr-storage, r=brson | Manish Goregaokar | -2/+2 |
| 2015-03-18 | Rollup merge of #23443 - meqif:ipv6addr-new-documentation-fix, r=steveklabnik | Manish Goregaokar | -1/+1 |
| 2015-03-18 | Rollup merge of #23392 - WiSaGaN:bugfix/fix_deprecate_link, r=Manishearth | Manish Goregaokar | -4/+4 |
| 2015-03-18 | Rollup merge of #23467 - andersk:loop-labeled-break-value, r=sanxiyn | Manish Goregaokar | -1/+40 |
| 2015-03-18 | Rollup merge of #23461 - alexcrichton:feat-char-at, r=aturon | Manish Goregaokar | -92/+156 |
| 2015-03-18 | Add a test | Steven Fackler | -0/+26 |
| 2015-03-18 | iOS: fallout from 1d5983a | Tamir Duberstein | -3/+2 |
| 2015-03-18 | Remove unnecessary vector creation. | Jordan Woehr | -4/+3 |
| 2015-03-18 | Make it clear which value is discarded | Simonas Kazlauskas | -1/+1 |
| 2015-03-18 | Address huon's comments | Manish Goregaokar | -17/+21 |
| 2015-03-18 | Clarify Expr | Manish Goregaokar | -5/+10 |
| 2015-03-18 | ast: Document Item and ForeignItem | Manish Goregaokar | -9/+27 |
| 2015-03-18 | ast: Document Lit | Manish Goregaokar | -1/+15 |
| 2015-03-18 | ast: Document Pat and Block | Manish Goregaokar | -1/+19 |
| 2015-03-18 | ast: Document paths and `where` clauses | Manish Goregaokar | -1/+15 |
| 2015-03-18 | ast: Document Expr_, UnOp, and BinOp | Manish Goregaokar | -1/+70 |
| 2015-03-18 | Add {get,set}rlimit and getrusage to libc | Simonas Kazlauskas | -0/+300 |
| 2015-03-18 | openbsd/bitrig threads | Sébastien Marie | -4/+2 |
| 2015-03-18 | Auto merge of #22838 - petrochenkov:bytelit, r=alexcrichton | bors | -191/+276 |
| 2015-03-18 | Remove the newly introduced trait impls for fixed-size arrays and use &b"..."... | Vadim Petrochenkov | -175/+159 |
| 2015-03-17 | Ignore stdio mutex poison state | Steven Fackler | -3/+3 |
| 2015-03-18 | Auto merge of #23290 - nrc:pub_priv_mod, r=nikomatsakis | bors | -65/+76 |
| 2015-03-18 | Infer type ! for a loop that can only break out of other loops | Anders Kaseorg | -1/+40 |
| 2015-03-17 | Fix a bug in inline assembly codegen where host clobbers were always used reg... | Jordan Woehr | -47/+26 |
| 2015-03-18 | Fix private module loophole in the 'private type in public item' check | Nick Cameron | -65/+76 |
| 2015-03-18 | Auto merge of #23452 - nikomatsakis:unsafety-subtyping, r=nrc | bors | -159/+191 |
| 2015-03-17 | std: Stabilize `IteratorExt::cloned` | Alex Crichton | -28/+19 |
| 2015-03-17 | std: Tweak some unstable features of `str` | Alex Crichton | -92/+156 |
| 2015-03-18 | Auto merge of #23438 - nikomatsakis:issue-23435-default-methods-with-where-cl... | bors | -50/+172 |
| 2015-03-18 | Fix byte string literal patterns in match | Vadim Petrochenkov | -17/+49 |
| 2015-03-18 | Avoid metadata bloat by using trait FixedSizeArray | Vadim Petrochenkov | -54/+40 |
| 2015-03-18 | Add and fix more tests | Vadim Petrochenkov | -4/+30 |
| 2015-03-18 | Fixed-size byte string literals (RFC 339) | Vadim Petrochenkov | -43/+100 |
| 2015-03-17 | Move unsafety out of the subtyping relation and into coercion. | Niko Matsakis | -59/+173 |
| 2015-03-17 | Auto merge of #23376 - eddyb:die-tydesc-die, r=nikomatsakis | bors | -528/+177 |
| 2015-03-17 | Fix documentation for StrExt::trim_matches | Kevin Butler | -2/+2 |
| 2015-03-17 | Extract out `mts` into `combine` using `tys_with_variance` | Niko Matsakis | -100/+18 |
| 2015-03-17 | Replace TyDesc and its uses with trait vtables and a type_name intrinsic. | Eduard Burtescu | -306/+87 |
| 2015-03-17 | rustc_trans: use the drop glue of T instead of Box<T> in Trait's vtable, be i... | Eduard Burtescu | -222/+90 |
| 2015-03-17 | libc: Fix definition of sockaddr_storage on 32-bit linux | Alex Crichton | -2/+2 |
| 2015-03-17 | Auto merge of #23330 - alexcrichton:thread-sleep, r=aturon | bors | -221/+197 |
| 2015-03-17 | book: improve pointer box borrowing examples | kjpgit | -13/+15 |
| 2015-03-17 | std: Implement `thread::sleep` | Alex Crichton | -1/+50 |
| 2015-03-17 | Fix IPv6 address format in documentation | Ricardo Martins | -1/+1 |
| 2015-03-17 | Auto merge of #23423 - nikomatsakis:issue-18737-trait-subtyping, r=nrc | bors | -122/+248 |
| 2015-03-17 | Fix soundness hole when unsizing boxes. | Niko Matsakis | -21/+61 |