| Age | Commit message (Expand) | Author | Lines |
| 2020-03-10 | builtin_macros: Add attribute macro `#[cfg_accessible(path)]` | Vadim Petrochenkov | -0/+21 |
| 2020-03-09 | panic_bounds_check: use caller_location, like PanicFnLangItem | Ralf Jung | -0/+18 |
| 2020-03-08 | Rollup merge of #69651 - Mark-Simulacrum:black-box-marker, r=eddyb | Mazdak Farrokhzad | -1/+11 |
| 2020-03-08 | constify `mem::discriminant` | Bastian Kauschke | -1/+4 |
| 2020-03-08 | Allow ZSTs in `AllocRef` | Tim Diekmann | -43/+13 |
| 2020-03-07 | Use ?-operator in more places (clippy::question_mark, had some false negative... | Matthias Krüger | -8/+5 |
| 2020-03-07 | Rollup merge of #69797 - jongiddy:convert-version, r=Mark-Simulacrum | Mazdak Farrokhzad | -1/+1 |
| 2020-03-07 | Rollup merge of #69794 - TimDiekmann:dangling, r=Amanieu | Mazdak Farrokhzad | -0/+16 |
| 2020-03-07 | Rollup merge of #69773 - matthiaskrgr:typos, r=petrochenkov | Mazdak Farrokhzad | -15/+15 |
| 2020-03-07 | Correct version that relaxed orphan rules | Jonathan Giddy | -1/+1 |
| 2020-03-07 | Rollup merge of #69706 - cuviper:subslice-methods, r=Centril | Mazdak Farrokhzad | -22/+8 |
| 2020-03-07 | Update alloc.rs | Tim Diekmann | -2/+2 |
| 2020-03-07 | Add `Layout::dangling()` to return a well-aligned `NonNull<u8>` | Tim Diekmann | -0/+16 |
| 2020-03-06 | bless tests | Matthias Krüger | -1/+1 |
| 2020-03-06 | fix various typos | Matthias Krüger | -16/+16 |
| 2020-03-05 | Document unsafe blocks in core::fmt | Phoebe Bell | -6/+45 |
| 2020-03-05 | Simplify the try intrinsic by using a callback in the catch block | Amanieu d'Antras | -6/+8 |
| 2020-03-05 | Make link to `std::str` active | LeSeulArtichaut | -1/+3 |
| 2020-03-04 | Add unborrow to reset RefCell borrow state | Andreas Molzer | -5/+36 |
| 2020-03-04 | Use subslice patterns in slice methods | Josh Stone | -22/+8 |
| 2020-03-04 | Auto merge of #68952 - faern:stabilize-assoc-int-consts, r=dtolnay | bors | -215/+255 |
| 2020-03-03 | Try to ensure usize marker does not get merged | Mark Rousskov | -1/+11 |
| 2020-03-03 | Rollup merge of #69621 - matthiaskrgr:q, r=petrochenkov | Dylan DPC | -6/+2 |
| 2020-03-03 | use question mark operator in a few places. | Matthias Krüger | -6/+2 |
| 2020-03-03 | Rollup merge of #69609 - TimDiekmann:excess, r=Amanieu | Yuki Okushi | -224/+80 |
| 2020-03-03 | Rollup merge of #69213 - LeSeulArtichaut:improve-doc-iter, r=steveklabnik | Yuki Okushi | -2/+5 |
| 2020-03-03 | Remove `usable_size` APIs | Tim Diekmann | -224/+80 |
| 2020-03-02 | remove unused mut, restructure the test | Dodo | -6/+6 |
| 2020-03-02 | Apply suggestions from code review | LeSeulArtichaut | -2/+3 |
| 2020-03-02 | An enter as last character pleases tidy it seems | Dodo | -1/+1 |
| 2020-03-02 | const forget tests | Dodo | -0/+19 |
| 2020-03-02 | Rollup merge of #69617 - DutchGhost:master, r=LukasKalbertodt | Dylan DPC | -1/+2 |
| 2020-03-02 | Rollup merge of #69544 - lqd:unrevert-67174, r=Mark-Simulacrum | Dylan DPC | -7/+5 |
| 2020-03-02 | Rollup merge of #68682 - LeSeulArtichaut:stable-intrinsics, r=steveklabnik | Dylan DPC | -9/+473 |
| 2020-03-02 | actually mark the function const | DutchGhost | -1/+1 |
| 2020-03-01 | Implement nth, last, and count for iter::Copied | Steven Allen | -0/+12 |
| 2020-03-01 | constify mem::forget | DutchGhost | -0/+1 |
| 2020-03-01 | Remove assert that had been replaced by assert_ne | Michael Mc Donnell | -1/+0 |
| 2020-02-29 | Rollup merge of #69582 - RalfJung:vec-parts, r=Centril | Dylan DPC | -6/+10 |
| 2020-02-29 | Rollup merge of #69581 - RalfJung:align_to_mut, r=Centril | Dylan DPC | -1/+15 |
| 2020-02-29 | Fix typo | Ralf Jung | -1/+1 |
| 2020-02-29 | fix aliasing violation in align_to_mut | Ralf Jung | -1/+15 |
| 2020-02-29 | transmute: improve Vec example | Ralf Jung | -6/+10 |
| 2020-02-29 | Auto merge of #69570 - Dylan-DPC:rollup-d6boczt, r=Dylan-DPC | bors | -19/+22 |
| 2020-02-29 | mem::zeroed/uninit: panic on types that do not permit zero-initialization | Ralf Jung | -0/+16 |
| 2020-02-29 | Rollup merge of #69551 - matthiaskrgr:len_zero, r=Mark-Simulacrum | Dylan DPC | -2/+2 |
| 2020-02-29 | Rollup merge of #69504 - MichaelMcDonnell:hash_assert_ne, r=LukasKalbertodt | Dylan DPC | -17/+20 |
| 2020-02-29 | Auto merge of #69208 - RalfJung:debug-assert, r=Mark-Simulacrum | bors | -5/+19 |
| 2020-02-28 | use is_empty() instead of len() == x to determine if structs are empty. | Matthias Krüger | -2/+2 |
| 2020-02-28 | Unrevert "Remove `checked_add` in `Layout::repeat`" | Remy Rakic | -7/+5 |