| Age | Commit message (Expand) | Author | Lines |
| 2023-08-14 | explain why we can mutate the FPU control word | Ralf Jung | -0/+12 |
| 2023-08-14 | reword the paragraph on file description ownership | Ralf Jung | -9/+10 |
| 2023-08-14 | don't link to RFCs, they are not up-to-date docs | Ralf Jung | -2/+1 |
| 2023-08-14 | std: add some missing repr(transparent) | Ralf Jung | -2/+22 |
| 2023-08-14 | avoid transmuting Box when we can just cast raw pointers instead | Ralf Jung | -2/+2 |
| 2023-08-14 | simplify is_nonoverlapping a bit | Ralf Jung | -1/+1 |
| 2023-08-14 | make Cell::swap panic if the Cells partially overlap | Ralf Jung | -2/+15 |
| 2023-08-14 | clarify safety documentation of ptr::swap and ptr::copy | Ralf Jung | -0/+6 |
| 2023-08-14 | mention /proc/self/fd with /proc/self/mem | Ralf Jung | -3/+3 |
| 2023-08-14 | wording; and explain some of the possible consequences of violating io-safety | Ralf Jung | -3/+9 |
| 2023-08-14 | typos | Ralf Jung | -2/+2 |
| 2023-08-14 | sync the various FromRawFd trait docs, and remove 'valid' | Ralf Jung | -21/+32 |
| 2023-08-14 | Implement Step for AsciiChar | ltdk | -2/+63 |
| 2023-08-13 | core/any: remove Provider trait | wayne warren | -739/+736 |
| 2023-08-13 | Rollup merge of #114069 - cuviper:profiler-path, r=Mark-Simulacrum | Guillaume Gomez | -0/+6 |
| 2023-08-13 | Rollup merge of #94667 - frank-king:feature/iter_map_windows, r=Mark-Simulacrum | Guillaume Gomez | -1/+743 |
| 2023-08-13 | add more explicit I/O safety documentation | Ralf Jung | -10/+57 |
| 2023-08-12 | aliasing guarantee | Manish Goregaokar | -25/+40 |
| 2023-08-12 | Rollup merge of #114132 - tamird:better-env-debug-impls, r=Amanieu | Matthias Krüger | -12/+256 |
| 2023-08-12 | Name what ln_gamma does | Jubilee Young | -2/+6 |
| 2023-08-12 | Remove unnecessary feature gates | Jacob Pratt | -1/+0 |
| 2023-08-12 | Partially stabilize #![feature(int_roundings)] | Jacob Pratt | -6/+6 |
| 2023-08-12 | Update Sender documentation for Sync | Gurinder Singh | -3/+2 |
| 2023-08-11 | Auto merge of #114720 - scottmcm:better-sub, r=workingjubilee | bors | -5/+24 |
| 2023-08-11 | Auto merge of #113432 - klensy:ms-cut-backtrace, r=ChrisDenton | bors | -8/+12 |
| 2023-08-10 | Tell LLVM that the negation in `<*const T>::sub` cannot overflow | Scott McMurray | -5/+24 |
| 2023-08-10 | Optimized implementations of max, min, and clamp for bool | danflapjax | -0/+16 |
| 2023-08-10 | Rollup merge of #114402 - tifv:tifv-fix-rc-doc, r=cuviper | Michael Goulet | -3/+3 |
| 2023-08-10 | Rollup merge of #114359 - ttsugriy:barrier-simpl, r=cuviper | Michael Goulet | -5/+2 |
| 2023-08-10 | Rollup merge of #114257 - rytheo:linked-list-avoid-unique, r=cuviper | Michael Goulet | -11/+13 |
| 2023-08-10 | Rollup merge of #114194 - thomcc:flushinline, r=cuviper | Michael Goulet | -0/+13 |
| 2023-08-11 | Add Iterator::map_windows | Frank King | -1/+743 |
| 2023-08-10 | Stabilize thread local cell methods. | Mara Bos | -19/+9 |
| 2023-08-09 | Rollup merge of #114377 - Enselic:test_get_dbpath_for_term-utf-8, r=thomcc | Matthias Krüger | -7/+5 |
| 2023-08-09 | Suggest using `Arc` on `!Send`/`!Sync` types | Esteban Kuber | -2/+8 |
| 2023-08-09 | Auto merge of #114646 - matthiaskrgr:rollup-xf7qnmn, r=matthiaskrgr | bors | -94/+160 |
| 2023-08-09 | Rollup merge of #114641 - kupiakos:ascii-char-to-not-as, r=scottmcm | Matthias Krüger | -4/+4 |
| 2023-08-09 | Rollup merge of #113939 - the8472:pidfd-from-child, r=Mark-Simulacrum | Matthias Krüger | -90/+156 |
| 2023-08-09 | Auto merge of #99747 - ankane:float_gamma, r=workingjubilee | bors | -2/+159 |
| 2023-08-08 | Rename copying `ascii::Char` methods from `as_` to `to_` | Alyssa Haroldsen | -4/+4 |
| 2023-08-08 | open pidfd in child process and send to the parent via SOCK_SEQPACKET+CMSG | The 8472 | -90/+156 |
| 2023-08-08 | Rollup merge of #106425 - ijackson:exit-status-default, r=dtolnay | Matthias Krüger | -24/+25 |
| 2023-08-08 | Fix #114608 | Georgii Rylov | -3/+3 |
| 2023-08-07 | Increase clarity about Hash - Eq consistency in HashMap and HashSet docs | Easyoakland | -5/+8 |
| 2023-08-07 | Bump compiler_builtins to 0.1.100 | Andrew Kane | -1/+1 |
| 2023-08-07 | core: Remove #[macro_export] from `debug_assert_matches` | Arthur Cohen | -1/+0 |
| 2023-08-07 | std: synchronize with all calls to `unpark` in id-based thread parker | joboet | -11/+6 |
| 2023-08-07 | Better Debug for Vars and VarsOs | Tamir Duberstein | -12/+256 |
| 2023-08-07 | impl Default for ExitCode | Ian Jackson | -0/+8 |
| 2023-08-07 | Rollup merge of #114562 - Trolldemorted:thiscall, r=oli-obk | Matthias Krüger | -1/+1 |