| Age | Commit message (Expand) | Author | Lines |
| 2024-05-28 | update tracking issue for lazy_cell_consume | Trevor Spiteri | -1/+1 |
| 2024-05-26 | Auto merge of #122079 - tbu-:pr_copy_file_range_probe, r=the8472 | bors | -19/+48 |
| 2024-05-26 | std::pal::unix::thread fetching min stack size on netbsd. | David Carlier | -1/+10 |
| 2024-05-26 | Auto merge of #125070 - tbu-:pr_set_extension_panic, r=jhpratt | bors | -0/+36 |
| 2024-05-25 | std: make TLS accessors closures that return pointers | joboet | -180/+107 |
| 2024-05-24 | Change pedantically incorrect OnceCell/OnceLock wording | Mahmoud Al-Qudsi | -1/+1 |
| 2024-05-24 | std: clean up the TLS implementation | joboet | -5/+4 |
| 2024-05-24 | std: simplify key-based thread locals | joboet | -185/+60 |
| 2024-05-24 | Auto merge of #125463 - GuillaumeGomez:rollup-287wx4y, r=GuillaumeGomez | bors | -2/+2 |
| 2024-05-24 | Auto merge of #123724 - joboet:static_tls, r=m-ou-se | bors | -70/+76 |
| 2024-05-23 | Rollup merge of #125452 - Urgau:check-cfg-libraries-cleanup, r=bjorn3 | Guillaume Gomez | -2/+2 |
| 2024-05-23 | Replace fake "restricted-std" Cargo feature by custom cfg | Urgau | -2/+2 |
| 2024-05-23 | std: rewrite native thread-local storage | joboet | -249/+331 |
| 2024-05-21 | Simplify environment variable examples | Martin Geisler | -10/+4 |
| 2024-05-21 | Rollup merge of #125348 - tbu-:pr_doc_path_absolute, r=jhpratt | Matthias Krüger | -3/+6 |
| 2024-05-21 | Rollup merge of #125225 - madsmtm:ios-crt_externs.h, r=workingjubilee | Matthias Krüger | -150/+127 |
| 2024-05-21 | Document behavior of `create_dir_all` wrt. empty path | Tobias Bucher | -0/+3 |
| 2024-05-21 | Rollup merge of #125333 - hermit-os:fuse, r=workingjubilee | Matthias Krüger | -21/+4 |
| 2024-05-21 | Rollup merge of #125123 - a1phyr:fix-read_exact, r=workingjubilee | Matthias Krüger | -10/+55 |
| 2024-05-21 | Small fixes to `std::path::absolute` docs | Tobias Bucher | -3/+6 |
| 2024-05-20 | switch also the default implementation for read_vectored | Stefan Lankes | -13/+2 |
| 2024-05-20 | Document platform-specifics for `Read` and `Write` of `File` | Tobias Bucher | -0/+76 |
| 2024-05-20 | switch to the default implementation of `write_vectored` | Stefan Lankes | -8/+2 |
| 2024-05-20 | Remove Windows dependency on libc | Ben Kimock | -0/+3 |
| 2024-05-20 | Address review comments | Benoît du Garreau | -1/+33 |
| 2024-05-20 | Make NULL check in argument parsing the same on all unix platforms | Mads Marquart | -76/+64 |
| 2024-05-19 | Rollup merge of #124992 - foresterre:example/is-terminal, r=ChrisDenton | Matthias Krüger | -0/+34 |
| 2024-05-19 | Add example to IsTerminal::is_terminal | Martijn | -0/+34 |
| 2024-05-19 | Rollup merge of #124304 - hermit-os:fuse, r=joboet | Michael Goulet | -90/+87 |
| 2024-05-19 | Rollup merge of #123709 - tgross35:windows-cmd-docs-update, r=ChrisDenton | Michael Goulet | -38/+59 |
| 2024-05-19 | Add NULL check in argument parsing on Apple platforms | Mads Marquart | -14/+44 |
| 2024-05-18 | android: use posix_memalign for aligned allocations | Ralf Jung | -18/+1 |
| 2024-05-17 | Use `_NSGetArgc`/`_NSGetArgv` on iOS/tvOS/watchOS/visionOS | Mads Marquart | -84/+19 |
| 2024-05-17 | Use `_NSGetEnviron` instead of `environ` on iOS/tvOS/watchOS/visionOS | Mads Marquart | -2/+26 |
| 2024-05-16 | Add `powi` to `f16` and `f128` | Trevor Gross | -0/+48 |
| 2024-05-15 | Rollup merge of #125003 - RalfJung:aligned_alloc, r=cuviper | León Orell Valerian Liehr | -11/+8 |
| 2024-05-14 | avoid using aligned_alloc; posix_memalign is better-behaved | Ralf Jung | -11/+8 |
| 2024-05-14 | Fix `read_exact` and `read_buf_exact` for `&[u8]` and `io:Cursor` | Benoît du Garreau | -10/+23 |
| 2024-05-13 | Rollup merge of #123817 - slanterns:seek_relative, r=dtolnay | Matthias Krüger | -2/+1 |
| 2024-05-13 | Add `size_of`, `size_of_val`, `align_of`, and `align_of_val` to the prelude | Josh Triplett | -2/+8 |
| 2024-05-13 | Panic if `PathBuf::set_extension` would add a path separator | Tobias Bucher | -0/+36 |
| 2024-05-12 | Auto merge of #124798 - devnexen:illumos_memalign_fix, r=RalfJung | bors | -2/+0 |
| 2024-05-12 | Auto merge of #125012 - RalfJung:format-error, r=Mark-Simulacrum,workingjubilee | bors | -1/+5 |
| 2024-05-11 | std::alloc: using posix_memalign instead of memalign on solarish. | David Carlier | -2/+0 |
| 2024-05-11 | io::Write::write_fmt: panic if the formatter fails when the stream does not fail | Ralf Jung | -1/+5 |
| 2024-05-11 | Rollup merge of #124766 - devnexen:getrandom_solarish, r=Mark-Simulacrum | Matthias Krüger | -1/+12 |
| 2024-05-08 | Rollup merge of #124788 - madsmtm:reduce-target_os-macos, r=workingjubilee | Jubilee | -21/+32 |
| 2024-05-08 | Rollup merge of #124782 - anatawa12:docs-create-new-already-exists, r=working... | Jubilee | -0/+9 |
| 2024-05-08 | Rollup merge of #124470 - devnexen:no_sigpipe_fbsd, r=workingjubilee | Jubilee | -1/+8 |
| 2024-05-06 | Rollup merge of #124520 - tbu-:pr_create_dir_all_doc, r=Amanieu | Matthias Krüger | -3/+7 |