| Age | Commit message (Expand) | Author | Lines |
| 2024-11-08 | Auto merge of #132717 - RalfJung:rustc_safe_intrinsic, r=compiler-errors | bors | -78/+102 |
| 2024-11-08 | remove support for rustc_safe_intrinsic attribute; use rustc_intrinsic functi... | Ralf Jung | -78/+102 |
| 2024-11-08 | Rollup merge of #132738 - cuviper:channel-heap-init, r=ibraheemdev | Stuart Cook | -4/+4 |
| 2024-11-07 | Rollup merge of #132696 - fortanix:raoul/rte-235-fix_fmodl_missing_symbol_iss... | Jubilee | -2/+20 |
| 2024-11-07 | Rollup merge of #132639 - RalfJung:intrinsics, r=workingjubilee,Amanieu | Jubilee | -0/+0 |
| 2024-11-07 | Initialize channel `Block`s directly on the heap | Josh Stone | -4/+4 |
| 2024-11-07 | core: move intrinsics.rs into intrinsics folder | Ralf Jung | -0/+0 |
| 2024-11-07 | Auto merge of #132714 - mati865:update-memchr, r=tgross35 | bors | -7/+2 |
| 2024-11-07 | Rollup merge of #132715 - tabokie:fix-lazy-lock-doc, r=Noratrieb | Jonas Böttiger | -2/+2 |
| 2024-11-07 | Rollup merge of #132665 - tyilo:nonzero-u-div-ceil, r=joboet | Jonas Böttiger | -0/+29 |
| 2024-11-07 | Separate f128 `%` operation to deal with missing `fmodl` symbol | Raoul Strackx | -2/+20 |
| 2024-11-07 | Auto merge of #132705 - kornelski:inline-repeat, r=tgross35 | bors | -0/+1 |
| 2024-11-07 | fix lazylock comment | Xinye | -2/+2 |
| 2024-11-07 | Auto merge of #131888 - ChrisDenton:deopt, r=ibraheemdev | bors | -57/+12 |
| 2024-11-07 | unpin and update memchr | Mateusz Mikuła | -7/+2 |
| 2024-11-06 | Inline str::repeat | Kornel | -0/+1 |
| 2024-11-07 | Rollup merge of #132617 - uellenberg:fix-rendered-doc, r=cuviper | Guillaume Gomez | -6/+4 |
| 2024-11-06 | Auto merge of #131721 - okaneco:const_eq_ignore_ascii_case, r=m-ou-se | bors | -3/+25 |
| 2024-11-06 | Auto merge of #132500 - RalfJung:char-is-whitespace-const, r=jhpratt | bors | -3/+4 |
| 2024-11-05 | Add new unstable feature `const_eq_ignore_ascii_case` | okaneco | -3/+25 |
| 2024-11-06 | Auto merge of #132664 - matthiaskrgr:rollup-i27nr7i, r=matthiaskrgr | bors | -2/+3 |
| 2024-11-05 | Change some code blocks to quotes in rendered std doc | uellenberg | -6/+4 |
| 2024-11-05 | Rollup merge of #131261 - clarfonthey:unsafe-cell-from-mut, r=m-ou-se | Matthias Krüger | -2/+3 |
| 2024-11-05 | Auto merge of #132661 - matthiaskrgr:rollup-npytbl6, r=matthiaskrgr | bors | -456/+478 |
| 2024-11-05 | Implement div_ceil for NonZero<unsigned> | Asger Hautop Drewsen | -0/+29 |
| 2024-11-05 | Rollup merge of #132571 - RalfJung:const_eval_select_macro, r=oli-obk | Matthias Krüger | -456/+478 |
| 2024-11-05 | Rollup merge of #132473 - ZhekaS:core_fmt_radix_no_panic, r=joboet | Jubilee | -1/+4 |
| 2024-11-05 | Rollup merge of #132153 - bjoernager:const-char-encode-utf16, r=dtolnay | Jubilee | -3/+5 |
| 2024-11-05 | add const_eval_select macro to reduce redundancy | Ralf Jung | -456/+478 |
| 2024-11-04 | Rollup merge of #132609 - NotWearingPants:patch-1, r=Amanieu | Jubilee | -1/+1 |
| 2024-11-04 | Rollup merge of #132606 - eduardosm:char-slice-str-pattern-doc, r=tgross35 | Jubilee | -2/+2 |
| 2024-11-04 | most const intrinsics don't need an explicit rustc_const_unstable any more | Ralf Jung | -43/+35 |
| 2024-11-04 | add new rustc_const_stable_intrinsic attribute for const-stable intrinsics | Ralf Jung | -57/+57 |
| 2024-11-04 | convert all const-callable intrinsics into the new form (without extern block) | Ralf Jung | -968/+1110 |
| 2024-11-04 | docs: fix grammar in doc comment at unix/process.rs | NotWearingPants | -1/+1 |
| 2024-11-04 | Improve example of `impl Pattern for &[char]` | Eduardo Sánchez Muñoz | -2/+2 |
| 2024-11-04 | Fixed typo, rebased | Eugene Shamis | -1/+1 |
| 2024-11-04 | Updated SAFETY comment to address underflow | Eugene Shamis | -2/+3 |
| 2024-11-04 | Replace checked slice indexing by unchecked to support panic-free code | Eugene Shamis | -1/+3 |
| 2024-11-04 | Rollup merge of #132579 - RalfJung:rustc-std-workspace-crates, r=Amanieu | Matthias Krüger | -0/+3 |
| 2024-11-04 | Stabilise 'const_char_encode_utf16'; | Gabriel Bjørnager Jensen | -3/+5 |
| 2024-11-04 | Auto merge of #132586 - workingjubilee:rollup-qrmn49a, r=workingjubilee | bors | -931/+177 |
| 2024-11-04 | update rustc-std-workspace crates | Ralf Jung | -0/+3 |
| 2024-11-03 | Rollup merge of #132423 - RalfJung:const-eval-align-offset, r=dtolnay | Jubilee | -931/+177 |
| 2024-11-04 | Auto merge of #132434 - tgross35:f128-tests, r=workingjubilee | bors | -11/+16 |
| 2024-11-03 | Enable `f128` tests on all non-buggy platforms 🎉 | Trevor Gross | -7/+12 |
| 2024-11-04 | Auto merge of #132581 - workingjubilee:rollup-4wj318p, r=workingjubilee | bors | -1/+9 |
| 2024-11-03 | Update `compiler_builtins` to 0.1.138 and pin it | Trevor Gross | -4/+4 |
| 2024-11-03 | Rollup merge of #132563 - frectonz:master, r=Amanieu | Jubilee | -1/+9 |
| 2024-11-03 | Auto merge of #123723 - madsmtm:apple-std-os, r=dtolnay | bors | -15/+37 |