| Age | Commit message (Expand) | Author | Lines |
| 2019-02-13 | fix overlapping mutable and shared references in BTreeMap's into_slices_mut | Ralf Jung | -3/+22 |
| 2019-02-13 | Relax some Ord bounds on BinaryHeap<T> | Anthony Ramine | -244/+244 |
| 2019-02-13 | Clarify guarantees for `Box` allocation | Jethro Beekman | -0/+13 |
| 2019-02-12 | Merging master | Matthias Einwag | -128/+134 |
| 2019-02-12 | Revert "Remove mentions of unstable sort_by_cached key from stable documentat... | Scott McMurray | -0/+4 |
| 2019-02-12 | Stabilize slice_sort_by_cached_key | Scott McMurray | -4/+1 |
| 2019-02-12 | Auto merge of #58051 - SimonSapin:str_escape, r=alexcrichton | bors | -73/+34 |
| 2019-02-12 | Auto merge of #58341 - alexreg:cosmetic-2-doc-comments, r=steveklabnik | bors | -48/+46 |
| 2019-02-12 | Move str::escape_* to libcore | Simon Sapin | -118/+0 |
| 2019-02-12 | Stabilize str::escape_* methods | Simon Sapin | -14/+7 |
| 2019-02-12 | New return types for str::escape_* that impl Display and Iterator<char> | Simon Sapin | -43/+129 |
| 2019-02-11 | Require a list of features to allow in `allow_internal_unstable` | Oliver Scherer | -1/+2 |
| 2019-02-10 | libs: doc comments | Alexander Regueiro | -36/+34 |
| 2019-02-10 | tests: doc comments | Alexander Regueiro | -12/+12 |
| 2019-02-09 | Rollup merge of #58275 - RalfJung:miri-test-libcore, r=Mark-Simulacrum | Mazdak Farrokhzad | -0/+43 |
| 2019-02-07 | disable tests in Miri | Ralf Jung | -0/+43 |
| 2019-02-07 | Remove images' url to make it work even without internet connection | Guillaume Gomez | -3/+1 |
| 2019-02-07 | Rollup merge of #58123 - lnicola:binary-heap-no-bounds-checks, r=sfackler | kennytm | -3/+8 |
| 2019-02-03 | Update the future/task API | Matthias Einwag | -137/+3 |
| 2019-02-03 | Auto merge of #58081 - Centril:liballoc-2018, r=oli-obk | bors | -392/+359 |
| 2019-02-03 | Avoid some bounds checks in binary_heap::{PeekMut,Hole} | Laurențiu Nicola | -3/+8 |
| 2019-02-03 | liballoc: revert nested imports style changes. | Mazdak Farrokhzad | -406/+305 |
| 2019-02-02 | liballoc: remove redundant extern crate. | Mazdak Farrokhzad | -2/+0 |
| 2019-02-02 | liballoc: fix some idiom lints. | Mazdak Farrokhzad | -87/+90 |
| 2019-02-02 | liballoc: elide &'static. | Mazdak Farrokhzad | -2/+2 |
| 2019-02-02 | liballoc: elide some lifetimes. | Mazdak Farrokhzad | -126/+119 |
| 2019-02-02 | liballoc: apply uniform_paths. | Mazdak Farrokhzad | -19/+20 |
| 2019-02-02 | liballoc: prefer imports of borrow from libcore. | Mazdak Farrokhzad | -14/+13 |
| 2019-02-02 | liballoc: adjust abolute imports + more import fixes. | Mazdak Farrokhzad | -25/+15 |
| 2019-02-02 | liballoc: refactor & fix some imports. | Mazdak Farrokhzad | -342/+424 |
| 2019-02-02 | liballoc: cargo check passes on 2018 | Mazdak Farrokhzad | -60/+61 |
| 2019-02-02 | liballoc => edition = 2018. | Mazdak Farrokhzad | -0/+1 |
| 2019-02-01 | Stabilize split_ascii_whitespace | Simon Sapin | -2/+1 |
| 2019-01-31 | Auto merge of #56696 - jonas-schievink:weak-counts, r=alexcrichton | bors | -1/+142 |
| 2019-01-31 | Rollup merge of #57934 - dwijnand:from-Arc/Rc-to-NonNull, r=alexcrichton | Mazdak Farrokhzad | -0/+42 |
| 2019-01-30 | override `VecDeque`'s `Iter::try_fold` | Andre Bogus | -1/+47 |
| 2019-01-29 | Add tracking issue to unstable attribute | Jonas Schievink | -4/+4 |
| 2019-01-29 | Make weak_count return an Option<usize> | Jonas Schievink | -26/+22 |
| 2019-01-29 | Implement a slightly racy `sync::Weak::weak_count` | Jonas Schievink | -5/+70 |
| 2019-01-29 | Implement Weak::{strong_count, weak_count} | Jonas Schievink | -0/+80 |
| 2019-01-28 | Introduce into_raw_non_null on Rc and Arc | Dale Wijnand | -0/+42 |
| 2019-01-28 | Rollup merge of #57045 - RalfJung:kill-more-uninit, r=SimonSapin | Mazdak Farrokhzad | -21/+23 |
| 2019-01-28 | rename first_mut_ptr -> first_ptr_mut | Ralf Jung | -5/+5 |
| 2019-01-28 | Use warn() for extra diagnostics; with -D warnings this leads to errors | Ralf Jung | -2/+2 |
| 2019-01-28 | add macro for creating uninitialized array | Ralf Jung | -9/+3 |
| 2019-01-28 | avoid some raw ptr casts in BTreeMap | Ralf Jung | -7/+10 |
| 2019-01-28 | avoid mem::uninitialized in BTreeMap | Ralf Jung | -9/+17 |
| 2019-01-28 | liballoc: remove unneeded allow(deprecated) | Ralf Jung | -3/+0 |
| 2019-01-27 | impl Generator for Pin<Box<Generator>> | Wim Looman | -0/+10 |
| 2019-01-27 | Change generator trait to use pinning | Wim Looman | -7/+6 |