| Age | Commit message (Expand) | Author | Lines |
| 2024-05-02 | library/std: Remove unused `gimli-symbolize` feature | Martin Nordholts | -2/+0 |
| 2024-05-02 | fixup links in never type docs | Waffle Maybe | -3/+3 |
| 2024-05-01 | Workaround rustfmt bug replacing type ascription | Mark Rousskov | -0/+1 |
| 2024-05-02 | Slightly reformat !'s docs after applying github suggestions | Waffle Lapkin | -5/+7 |
| 2024-05-01 | Step bootstrap cfgs | Mark Rousskov | -258/+31 |
| 2024-05-02 | Apply suggestions from code review | Waffle Maybe | -8/+7 |
| 2024-05-01 | Replace version placeholders for 1.79 | Mark Rousskov | -68/+65 |
| 2024-05-01 | Describe and use CStr literals in CStr and CString docs | George Bateman | -21/+28 |
| 2024-05-01 | Rollup merge of #124542 - CBSpeir:diagnostic-item-enumerate-method, r=scottmcm | Matthias Krüger | -0/+1 |
| 2024-05-01 | Add benchmarks for `impl Debug for str` | Arpad Borsos | -0/+80 |
| 2024-05-01 | Auto merge of #124491 - madsmtm:target_vendor-apple, r=workingjubilee | bors | -370/+88 |
| 2024-04-30 | Updated `libm` to fix `clippy` warning | Amjad Alsharafi | -3/+0 |
| 2024-04-30 | Fix clippy warnings in `math` | Amjad Alsharafi | -0/+5 |
| 2024-04-30 | Fix math libraries not being linked on some platforms | Amjad Alsharafi | -8/+0 |
| 2024-04-30 | std: rewrite TLS on platforms without threads | joboet | -71/+77 |
| 2024-04-30 | Fix `clippy::deprecated_cfg_attr` on compiler_builtins | Amjad Alsharafi | -1/+1 |
| 2024-04-29 | Add diagnostic item for std::iter::Iterator::enumerate | Christopher B. Speir | -0/+1 |
| 2024-04-29 | Rollup merge of #124530 - djkoloski:fuchsia_dirfd, r=tmandry | Matthias Krüger | -0/+1 |
| 2024-04-29 | Document that `create_dir_all` calls `mkdir`/`CreateDirW` multiple times | Tobias Bucher | -3/+7 |
| 2024-04-29 | Rollup merge of #124484 - GKFX:offset_of_must_use, r=jieyouxu | 许杰友 Jieyou Xu (Joe) | -2/+2 |
| 2024-04-29 | Fix Fuchsia build broken by #124210 | David Koloski | -0/+1 |
| 2024-04-29 | Fix ESP IDF build broken by #124210 | ivmarkov | -0/+1 |
| 2024-04-29 | Auto merge of #124502 - NCGThompson:statically-known-docs, r=jhpratt | bors | -4/+39 |
| 2024-04-28 | Update is_val_statically_known docs | Nicholas Thompson | -4/+39 |
| 2024-04-28 | Run tidy on tests | Ryan Lowe | -27/+45 |
| 2024-04-28 | Stabilize `non_null_convenience` | Trevor Gross | -79/+63 |
| 2024-04-28 | Fix posix_spawn not being used on iOS and visionOS | Mads Marquart | -8/+3 |
| 2024-04-28 | Move various stdlib tests to library/std/tests | Ryan Lowe | -0/+312 |
| 2024-04-28 | Fix va_list on watchOS and visionOS | Mads Marquart | -16/+7 |
| 2024-04-28 | Fix SIGEMT and SIGINFO parsing on watchOS and visionOS | Mads Marquart | -7/+3 |
| 2024-04-28 | Fix available_parallelism on watchOS and visionOS | Mads Marquart | -3/+1 |
| 2024-04-28 | Add vec_mul | Luca Barbato | -0/+63 |
| 2024-04-28 | Remove `#![feature(inline_const)]` | Eduardo Sánchez Muñoz | -1/+0 |
| 2024-04-28 | Add `#[cfg_attr(miri, ignore)]` to tests of intrinsics that cannot be support... | Eduardo Sánchez Muñoz | -0/+5 |
| 2024-04-28 | Fix #124478 - offset_of! returns a temporary | George Bateman | -2/+2 |
| 2024-04-28 | std::net: Socket::new_raw set to SO_NOSIGPIPE on freebsd/netbsd/dragonfly. | David Carlier | -1/+8 |
| 2024-04-28 | Update status of 128-bit integers in README.md | beetrees | -1/+1 |
| 2024-04-28 | Use `target_vendor = "apple"` instead of `target_os = "..."` | Mads Marquart | -336/+74 |
| 2024-04-28 | Auto merge of #124210 - the8472:consign-ebadf-to-the-fire, r=Mark-Simulacrum | bors | -5/+49 |
| 2024-04-28 | put FD validity behind late debug_asserts checking | The 8472 | -29/+32 |
| 2024-04-28 | Rollup merge of #124447 - workingjubilee:set-argv-twice-on-gnu, r=ChrisDenton | Matthias Krüger | -6/+4 |
| 2024-04-27 | Unconditionally call really_init | Jubilee Young | -6/+4 |
| 2024-04-27 | Lift the probe code of `copy_file_range` into a function | Tobias Bucher | -29/+31 |
| 2024-04-27 | Elaborate in comment about `statx` probe | Tobias Bucher | -8/+4 |
| 2024-04-27 | WS fix. | JirCep | -1/+1 |
| 2024-04-27 | String.truncate calls Vec.truncate, in turn, and that states | JirCep | -1/+1 |
| 2024-04-27 | Auto merge of #124432 - zetanumbers:non_copy_into_raw_with_alloc, r=Nilstrieb | bors | -7/+4 |
| 2024-04-27 | Relax `A: Clone` bound for `rc::Weak::into_raw_and_alloc` | Daria Sukhonina | -7/+4 |
| 2024-04-27 | io safety: update Unix explanation | Ralf Jung | -11/+22 |
| 2024-04-27 | Rollup merge of #124387 - workingjubilee:use-raw-pointers-in-thread-locals, r... | Matthias Krüger | -9/+12 |