| Age | Commit message (Expand) | Author | Lines |
| 2023-12-05 | Rollup merge of #118450 - marcin-serwin:master, r=workingjubilee | Michael Goulet | -4/+4 |
| 2023-12-05 | Rollup merge of #118350 - DaniPopes:tuple-default, r=workingjubilee | Michael Goulet | -9/+6 |
| 2023-12-05 | Rollup merge of #118123 - RalfJung:internal-lib-features, r=compiler-errors | Michael Goulet | -0/+7 |
| 2023-12-05 | Stabilize `type_name_of_val` | Trevor Gross | -21/+18 |
| 2023-12-05 | Auto merge of #118362 - RalfJung:panic_nounwind, r=thomcc | bors | -3/+6 |
| 2023-12-04 | Improve example in `slice::windows()` doc | Gurinder Singh | -5/+5 |
| 2023-12-04 | Auto merge of #116915 - bend-n:unwet, r=saethlin | bors | -1/+4 |
| 2023-12-04 | use `assume(idx < self.len())` in `[T]::get_unchecked` | bendn | -1/+4 |
| 2023-12-03 | move calling miri_promise_symbolic_alignment to a shared helper | Ralf Jung | -65/+38 |
| 2023-12-03 | miri: support 'promising' alignment for symbolic alignment check | Ralf Jung | -6/+85 |
| 2023-12-03 | Auto merge of #118487 - RalfJung:exposed-provenance, r=thomcc | bors | -56/+70 |
| 2023-12-03 | Auto merge of #118128 - RalfJung:bad-intrinsics, r=the8472 | bors | -0/+10 |
| 2023-12-02 | Auto merge of #118077 - calebzulawski:sync-portable-simd-2023-11-19, r=workin... | bors | -13/+13 |
| 2023-12-02 | Add diagnostic item to PartialEq::{eq,ne} | Urgau | -0/+2 |
| 2023-12-01 | Attempt to try to resolve blocking concerns | Caio | -0/+143 |
| 2023-12-01 | update addr docs | Ralf Jung | -8/+8 |
| 2023-11-30 | move exposed-provenance APIs into separate feature gate and explain the relat... | Ralf Jung | -48/+62 |
| 2023-11-29 | Remove `{,r}split_array_ref{,_mut}` methods from slices | Trevor Gross | -162/+16 |
| 2023-11-29 | Use OnceCell in cell module documentation | Marcin Serwin | -4/+4 |
| 2023-11-29 | Auto merge of #118315 - WaffleLapkin:don't-repeat_byte, r=m-ou-se | bors | -16/+2 |
| 2023-11-29 | Rollup merge of #118231 - RalfJung:const-raw-slice-empty, r=cuviper | Matthias Krüger | -3/+21 |
| 2023-11-29 | Rollup merge of #118265 - RalfJung:memcpy, r=cuviper | Matthias Krüger | -3/+2 |
| 2023-11-29 | Auto merge of #114841 - bvanjoi:fix-114814, r=cuviper | bors | -0/+14 |
| 2023-11-28 | reword panic comments and add spaces to unlikely branches | Ryan Mehri | -60/+64 |
| 2023-11-28 | Auto merge of #110353 - the8472:in-place-flatten-chunks, r=cuviper | bors | -40/+316 |
| 2023-11-28 | Rollup merge of #118397 - Zalathar:nonzero, r=WaffleLapkin | Matthias Krüger | -2/+2 |
| 2023-11-28 | Rollup merge of #118236 - ksw2000:update_mod_comment, r=cuviper | Matthias Krüger | -3/+3 |
| 2023-11-28 | Rollup merge of #115331 - the8472:chars_advance, r=cuviper | Matthias Krüger | -0/+50 |
| 2023-11-28 | Fix comments for unsigned non-zero `checked_add`, `saturating_add` | Zalathar | -2/+2 |
| 2023-11-27 | optimize str::iter::Chars::advance_by | The 8472 | -0/+50 |
| 2023-11-27 | use the usual attributes for panic_misaligned_pointer_dereference | Ralf Jung | -2/+2 |
| 2023-11-27 | make sure panic_nounwind_fmt can still be fully inlined (e.g. for panic_immed... | Ralf Jung | -1/+4 |
| 2023-11-27 | stabilise bound_map | Dylan DPC | -3/+1 |
| 2023-11-27 | Auto merge of #118321 - WaffleLapkin:unspace-fn-pointer-fake-variadic, r=notr... | bors | -1/+1 |
| 2023-11-27 | Simplify Default for tuples | DaniPopes | -9/+6 |
| 2023-11-27 | Auto merge of #118313 - WaffleLapkin:fixup_comments_in_some_nonzero_ops, r=th... | bors | -14/+44 |
| 2023-11-26 | Add `is_aligned{,_to}` convenience methods to `NonNull` | Maybe Waffle | -0/+234 |
| 2023-11-26 | Add `align_offset` convenience method to `NonNull` | Maybe Waffle | -0/+60 |
| 2023-11-26 | Add `replace` and `swap` convenience methods to `NonNull` | Maybe Waffle | -0/+35 |
| 2023-11-26 | Add `offset_from`-ish convenience methods to `NonNull` | Maybe Waffle | -11/+209 |
| 2023-11-26 | Add offset-ish convenience methods to `NonNull` | Maybe Waffle | -0/+274 |
| 2023-11-26 | Add read/write/copy convenience methods to `NonNull` | Maybe Waffle | -14/+223 |
| 2023-11-26 | rustdoc: Remove space from fake-variadic fn ptr impls | Maybe Waffle | -1/+1 |
| 2023-11-26 | Update std::simd usage and test outputs | Caleb Zulawski | -9/+9 |
| 2023-11-26 | Use inner docs to fix links | Caleb Zulawski | -1/+2 |
| 2023-11-26 | Fix library tests | Caleb Zulawski | -3/+2 |
| 2023-11-26 | Use `usize::repeat_u8` instead of implementing `repeat_byte` in `memchr.rs` | Maybe Waffle | -16/+2 |
| 2023-11-26 | Improve some comments for non-zero ops | Maybe Waffle | -14/+44 |
| 2023-11-26 | Auto merge of #110303 - nbdd0121:master, r=Mark-Simulacrum | bors | -147/+154 |
| 2023-11-25 | Remove an unneeded helper from the tuple library code | Scott McMurray | -13/+1 |