| Age | Commit message (Expand) | Author | Lines |
| 2023-04-09 | Auto merge of #109500 - petrochenkov:modchainld, r=oli-obk | bors | -0/+2 |
| 2023-04-09 | Use `Display` in top-level example for `PanicInfo` | Lukas Markeffsky | -6/+2 |
| 2023-04-09 | Fix typo in todo! macro docstring | Patrik Kormosi | -1/+1 |
| 2023-04-09 | Auto merge of #110101 - JohnTitor:rollup-ol20aw7, r=JohnTitor | bors | -0/+2 |
| 2023-04-09 | Rollup merge of #110060 - WaffleLapkin:sync_refs, r=jyn514 | Yuki Okushi | -0/+2 |
| 2023-04-08 | Enforce that PointerLike requires a pointer-like ABI | Michael Goulet | -1/+1 |
| 2023-04-08 | Add 64-bit `time_t` support on 32-bit glibc Linux to `set_times` | beetrees | -2/+39 |
| 2023-04-08 | sync::mpsc: synchronize receiver disconnect with initialization | Petros Angelatos | -0/+12 |
| 2023-04-08 | std: Mark two reexports that should be inlined as `doc(inline)` | Vadim Petrochenkov | -0/+2 |
| 2023-04-08 | Auto merge of #110076 - Nilstrieb:rollup-22yp01c, r=Nilstrieb | bors | -1/+1 |
| 2023-04-08 | Revert "Make the `Step` implementations const." | Deadbeef | -17/+7 |
| 2023-04-08 | Revert "Mark DoubleEndedIterator as #[const_trait] using rustc_do_not_const_c... | Deadbeef | -69/+9 |
| 2023-04-08 | Auto merge of #109995 - enkron:u/enkron/substitute-hardcoded-port-num-in-list... | bors | -1/+1 |
| 2023-04-07 | The `wrapping_neg` example for unsigned types shouldn't use `i8` | Scott McMurray | -5/+4 |
| 2023-04-08 | fix(tcp): remove redundant `format!` macro call | Sergei Belokon | -1/+1 |
| 2023-04-07 | Fix wrong type in docs: i16 -> u16 | Jörn Bethune | -1/+1 |
| 2023-04-07 | Document that `&T` and `&mut T` are `Sync` if `T` is | Maybe Waffle | -0/+2 |
| 2023-04-08 | Define UNWIND_DATA_REG for loongarch64 | zhaixiaojuan | -0/+3 |
| 2023-04-07 | Don't claim LocalKey::with prevents a reference to be sent across threads | Giacomo Stevanato | -2/+2 |
| 2023-04-07 | Avoid some manual slice length calculation | Scott McMurray | -12/+4 |
| 2023-04-07 | Auto merge of #110019 - jplatte:jplatte/stabilize-is-some-and, r=Amanieu | bors | -9/+3 |
| 2023-04-07 | Auto merge of #109990 - gwy15:remove-bufwriter-useless-mut-pointer, r=jyn514 | bors | -1/+1 |
| 2023-04-07 | Inline try_from and try_into | Tomasz Miąsko | -0/+2 |
| 2023-04-07 | Rollup merge of #109960 - thomcc:symlink-junction-buffer-overrun, r=ChrisDenton | Matthias Krüger | -9/+25 |
| 2023-04-07 | Rollup merge of #109806 - Zoxc:gnu-tls, r=pnkfelix | Matthias Krüger | -1/+3 |
| 2023-04-06 | Stabilize is_some_and | Jonas Platte | -9/+3 |
| 2023-04-06 | chore(tcp): change the hardcoded port number to `port` var | Sergei Belokon | -1/+1 |
| 2023-04-06 | Remove an unnecessary `mut` in `BufWriter::into_parts`. | 管唯宇 | -1/+1 |
| 2023-04-05 | Derive String's PartialEq implementation | Konrad Borowski | -9/+1 |
| 2023-04-05 | Refactor core::char::EscapeDefault and co. structures | Michal Nazarewicz | -206/+271 |
| 2023-04-05 | Fix buffer overrun in (test-only) symlink_junction | Thom Chiovoloni | -9/+25 |
| 2023-04-05 | Auto merge of #94786 - joshlf:patch-5, r=dtolnay | bors | -0/+7 |
| 2023-04-04 | Add links from `core::cmp` derives to their traits | clubby789 | -4/+7 |
| 2023-04-04 | library/unwind: Add definitions for loongarch64 | zhaixiaojuan | -0/+3 |
| 2023-04-04 | library/std: Add support for loongarch64 | zhaixiaojuan | -0/+3 |
| 2023-04-04 | Rollup merge of #109883 - skaunov:patch-1, r=thomcc | Yuki Okushi | -1/+1 |
| 2023-04-03 | avoid zero-copy ops for File->Pipe and File->Socket in io::copy | The 8472 | -16/+46 |
| 2023-04-03 | test that modifications to the source don't become visible after io::copy | The 8472 | -0/+42 |
| 2023-04-03 | Preserve potential mood for equal or NUL sign | fleetingbytes | -5/+3 |
| 2023-04-03 | Remove redundant empty line | fleetingbytes | -1/+0 |
| 2023-04-03 | remove self-reference in var_os doc | fleetingbytes | -1/+0 |
| 2023-04-03 | add situation where var_os returns None | fleetingbytes | -1/+7 |
| 2023-04-03 | Update env.rs | fleetingbytes | -10/+0 |
| 2023-04-03 | Auto merge of #109756 - cr1901:msp-shift, r=Mark-Simulacrum | bors | -1/+1 |
| 2023-04-03 | Auto merge of #108448 - ishitatsuyuki:binary-heap, r=Mark-Simulacrum | bors | -51/+19 |
| 2023-04-03 | Rollup merge of #109722 - hermitcore:read, r=Mark-Simulacrum | Matthias Krüger | -7/+24 |
| 2023-04-03 | Add links to <cell.rs> | Sergey Kaunov | -1/+1 |
| 2023-04-02 | Auto merge of #109852 - Nilstrieb:rollup-g3mgxxw, r=Nilstrieb | bors | -3/+3 |
| 2023-04-02 | Rollup merge of #109840 - taiki-e:typo, r=ChrisDenton | Nilstrieb | -1/+1 |
| 2023-04-02 | Rollup merge of #109839 - sartak:iter-grammar, r=scottmcm | Nilstrieb | -2/+2 |