| Age | Commit message (Expand) | Author | Lines |
| 2018-04-12 | Use NonNull<Void> instead of *mut u8 in the Alloc trait | Mike Hommey | -14/+15 |
| 2018-04-12 | Restore Global.oom() functionality | Simon Sapin | -0/+4 |
| 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/+3 |
| 2018-04-12 | realloc with a new size only, not a full new layout. | Simon Sapin | -25/+17 |
| 2018-04-12 | Add FIXME comments for Void::null_mut usage | Simon Sapin | -0/+1 |
| 2018-04-12 | Remove the now-unit-struct AllocErr parameter of oom() | Simon Sapin | -6/+6 |
| 2018-04-12 | Implement GlobalAlloc for System | Simon Sapin | -128/+141 |
| 2018-04-12 | Make AllocErr a zero-size unit struct | Simon Sapin | -15/+9 |
| 2018-04-12 | Update to most recent version of dlmalloc | Alex Crichton | -43/+19 |
| 2018-04-12 | Separate alloc::heap::Alloc trait for stage0 #[global_allocator] | Simon Sapin | -4/+4 |
| 2018-04-08 | Move deny(warnings) into rustbuild | Mark Simulacrum | -1/+0 |
| 2018-04-04 | Auto merge of #49573 - glandium:huge-align, r=SimonSapin | bors | -0/+8 |
| 2018-04-02 | Use Alloc and Layout from core::heap. | Mike Hommey | -7/+4 |
| 2018-04-02 | Reject huge alignments on macos with system allocator only | Mike Hommey | -0/+8 |
| 2017-12-31 | Build the right platform module on CloudABI. | Ed Schouten | -2/+2 |
| 2017-12-27 | Disable printing of error message on file descriptor 2 on CloudABI. | Ed Schouten | -0/+10 |
| 2017-11-20 | Remove comment about a branch being optimized out, fix #45831 | Simon Sapin | -2/+1 |
| 2017-11-20 | alloc_system: don’t assume MIN_ALIGN for small sizes, fix #45955 | Simon Sapin | -3/+3 |
| 2017-11-19 | std: Add a new wasm32-unknown-unknown target | Alex Crichton | -0/+90 |
| 2017-10-12 | Fix out of date unstable book entries for `alloc_*` features. | Simon Sapin | -1/+1 |
| 2017-09-10 | Autodetect the type of allocator crate used | Michal 'vorner' Vaner | -0/+3 |
| 2017-09-06 | Use memalign instead of posix_memalign for Solaris | bgermann | -2/+2 |
| 2017-08-25 | *: remove crate_{name,type} attributes | Tamir Duberstein | -2/+0 |
| 2017-07-25 | Bump master to 1.21.0 | Alex Crichton | -81/+68 |
| 2017-07-05 | rustc: Implement the #[global_allocator] attribute | Alex Crichton | -142/+337 |
| 2017-06-02 | Improve reallocation in alloc_system on Windows | Peter Atashian | -17/+20 |
| 2017-04-15 | Specialize Vec::from_elem<u8> to use calloc or memset | Matt Brubeck | -3/+31 |
| 2017-01-08 | Auto merge of #38679 - alexcrichton:always-deny-warnings, r=nrc | bors | -1/+1 |
| 2016-12-29 | Remove not(stage0) from deny(warnings) | Alex Crichton | -1/+1 |
| 2016-12-29 | liballoc_*: add MIN_ALIGN for sparc64 | Jonathan A. Kollasch | -1/+2 |
| 2016-12-20 | Switch back to alloc_system | Jeremy Soller | -47/+4 |
| 2016-12-15 | WIP: Cross-compilation for Redox target | Jeremy Soller | -1/+44 |
| 2016-10-25 | Print out the error when HeapFree failures do occur | Peter Atashian | -2/+3 |
| 2016-10-16 | run rustfmt on various folders | Srinivas Reddy Thatiparthy | -5/+1 |
| 2016-09-30 | Preliminary wasm32 support | Brian Anderson | -1/+2 |
| 2016-09-09 | Add s390x support | Ulrich Weigand | -1/+2 |
| 2016-08-27 | fix cross compilation of std | Jorge Aparicio | -1/+2 |
| 2016-05-24 | std: Use memalign, not posix_memalign, on Android | Alex Crichton | -7/+34 |
| 2016-05-09 | rustc: Implement custom panic runtimes | Alex Crichton | -4/+3 |
| 2016-04-15 | alloc_system: Handle failure properly | Alex Crichton | -2/+4 |
| 2016-02-06 | Add the asmjs-unknown-emscripten triple. Add cfgs to libs. | Brian Anderson | -1/+2 |
| 2016-02-01 | Remove "powerpc64le" and "mipsel" target_arch | Alex Crichton | -3/+1 |
| 2016-01-24 | mk: Move from `-D warnings` to `#![deny(warnings)]` | Alex Crichton | -0/+1 |
| 2016-01-13 | Add powerpc64 and powerpc64le support | Anton Blanchard | -1/+3 |
| 2016-01-12 | android has `posix_memalign` for API 16+ since NDK r10d | Tamir Duberstein | -26/+6 |
| 2015-12-21 | Register new snapshots | Alex Crichton | -5/+1 |
| 2015-12-05 | std: Stabilize APIs for the 1.6 release | Alex Crichton | -1/+1 |
| 2015-12-02 | MIN_ALIGN is definitely 8 on 32-bit x86, at least on Windows. | Peter Atashian | -3/+3 |