| Age | Commit message (Expand) | Author | Lines |
| 2018-04-13 | Update Cargo | Aleksey Kladov | -0/+0 |
| 2018-04-13 | [doc] note the special type inference handling for shifts | Andre Bogus | -2/+12 |
| 2018-04-13 | Auto merge of #49808 - spastorino:dump_cause_ice, r=nikomatsakis | bors | -13/+69 |
| 2018-04-13 | Don't abort const eval due to long running evals, just warn | Oliver Schneider | -18/+9 |
| 2018-04-13 | std: Avoid allocating panic message unless needed | Alex Crichton | -50/+103 |
| 2018-04-13 | core: Remove an implicit panic from Formatter::pad | Alex Crichton | -1/+5 |
| 2018-04-13 | Reduce the size of panics in RawVec | Alex Crichton | -8/+15 |
| 2018-04-13 | std: Minimize size of panicking on wasm | Alex Crichton | -45/+205 |
| 2018-04-13 | core: Remove panics from some `Layout` methods | Alex Crichton | -8/+14 |
| 2018-04-13 | core: Inline `From<AllocErr> for CollectionAllocErr` | Alex Crichton | -0/+1 |
| 2018-04-13 | rustdoc: Don't include private paths in all.html | Oliver Middleton | -1/+11 |
| 2018-04-13 | Auto merge of #49800 - ishitatsuyuki:intern-goal, r=nikomatsakis | bors | -59/+151 |
| 2018-04-13 | Auto merge of #49669 - SimonSapin:global-alloc, r=alexcrichton | bors | -1493/+1035 |
| 2018-04-13 | Remove -Z miri debugging option | Fabio B | -6/+1 |
| 2018-04-13 | Auto merge of #49389 - fanzier:euclidean-division, r=KodrAus | bors | -0/+541 |
| 2018-04-13 | Auto merge of #49360 - topecongiro:run-rustfmt/build_helper, r=nrc | bors | -47/+70 |
| 2018-04-13 | Auto merge of #49718 - petrochenkov:fieldcmp, r=eddyb | bors | -676/+759 |
| 2018-04-13 | Move `path_len` to ExternCrate | Shotaro Yamada | -46/+24 |
| 2018-04-12 | Auto merge of #45298 - toidiu:ak-44493-infer-predicate, r=nikomatsakis | bors | -21/+1414 |
| 2018-04-12 | Address more nits. | Fabian Zaiser | -7/+6 |
| 2018-04-12 | Initial docs for the GlobalAlloc trait | Simon Sapin | -5/+39 |
| 2018-04-12 | Rename alloc::Void to alloc::Opaque | Simon Sapin | -139/+138 |
| 2018-04-12 | Remove conversions for allocated pointers | Simon Sapin | -28/+11 |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -128/+135 |
| 2018-04-12 | impl GlobalAlloc for Global | Simon Sapin | -35/+50 |
| 2018-04-12 | Restore Global.oom() functionality | Simon Sapin | -0/+57 |
| 2018-04-12 | Remove `impl Alloc for &'a System` | Simon Sapin | -113/+28 |
| 2018-04-12 | Move platform-specific OOM handling to functions | Simon Sapin | -73/+58 |
| 2018-04-12 | Conversions between Result<*mut u8, AllocErr>> and *mut Void | Simon Sapin | -18/+24 |
| 2018-04-12 | realloc with a new size only, not a full new layout. | Simon Sapin | -102/+74 |
| 2018-04-12 | Return Result instead of Option in alloc::Layout constructors | Simon Sapin | -26/+54 |
| 2018-04-12 | Add FIXME comments for Void::null_mut usage | Simon Sapin | -0/+1 |
| 2018-04-12 | Remove the now-unit-struct AllocErr field inside CollectionAllocErr | Simon Sapin | -29/+29 |
| 2018-04-12 | Remove the now-unit-struct AllocErr parameter of oom() | Simon Sapin | -28/+28 |
| 2018-04-12 | Use the GlobalAlloc trait for #[global_allocator] | Simon Sapin | -706/+167 |
| 2018-04-12 | Implement GlobalAlloc for System | Simon Sapin | -128/+145 |
| 2018-04-12 | Make AllocErr a zero-size unit struct | Simon Sapin | -135/+51 |
| 2018-04-12 | Update to most recent version of dlmalloc | Alex Crichton | -45/+19 |
| 2018-04-12 | Separate alloc::heap::Alloc trait for stage0 #[global_allocator] | Simon Sapin | -14/+109 |
| 2018-04-12 | Actually deprecate the Heap type | Simon Sapin | -46/+47 |
| 2018-04-12 | Rename the Heap type to Global | Simon Sapin | -9/+14 |
| 2018-04-12 | Actually deprecate heap modules. | Simon Sapin | -8/+20 |
| 2018-04-12 | Rename `heap` modules in the core, alloc, and std crates to `alloc` | Simon Sapin | -4/+16 |
| 2018-04-12 | Import the `alloc` crate as `alloc_crate` in std | Simon Sapin | -40/+34 |
| 2018-04-12 | Add a GlobalAlloc trait | Simon Sapin | -0/+30 |
| 2018-04-12 | Add a core::heap::Void extern type. | Simon Sapin | -0/+21 |
| 2018-04-12 | Inline docs for the heap module’s reexports | Simon Sapin | -1/+3 |
| 2018-04-12 | add test for using target features in doctests | QuietMisdreavus | -0/+31 |
| 2018-04-12 | improve Atomic*::fetch_update docs | Andre Bogus | -2/+2 |
| 2018-04-12 | Add some new tests + Fix failing tests | Vadim Petrochenkov | -39/+208 |