| Age | Commit message (Expand) | Author | Lines |
| 2021-03-05 | Rollup merge of #82770 - m-ou-se:assert-match, r=joshtriplett | Mara | -2/+3 |
| 2021-03-05 | Rollup merge of #82764 - m-ou-se:map-try-insert, r=Amanieu | Mara | -0/+87 |
| 2021-03-05 | Rollup merge of #82728 - calebsander:refactor/bufreader-buf, r=m-ou-se | Mara | -4/+4 |
| 2021-03-05 | Rollup merge of #81136 - Xavientois:io_reader_size_hint, r=cramertj | Mara | -3/+103 |
| 2021-03-05 | Rollup merge of #80723 - rylev:noop-lint-pass, r=estebank | Mara | -4/+4 |
| 2021-03-04 | Add debug_assert_matches macro. | Mara Bos | -2/+2 |
| 2021-03-04 | Add assert_matches!(expr, pat). | Mara Bos | -2/+3 |
| 2021-03-04 | Add tracking issue for map_try_insert. | Mara Bos | -6/+6 |
| 2021-03-04 | Remove unnecessary bound from HashMap::try_insert. | Mara Bos | -4/+1 |
| 2021-03-04 | Ignore file length tidy warning in hash/map.rs. | Mara Bos | -0/+2 |
| 2021-03-04 | Implement Error for OccupiedError. | Mara Bos | -0/+32 |
| 2021-03-04 | Improve Debug implementations of OccupiedError. | Mara Bos | -1/+11 |
| 2021-03-04 | Add HashMap::try_insert and hash_map::OccupiedError. | Mara Bos | -0/+46 |
| 2021-03-04 | ExitStatus tests: Make less legible to satisfy "tidy" | Ian Jackson | -2/+4 |
| 2021-03-04 | ExitStatus unknown wait status test: Make it Linux only | Ian Jackson | -1/+1 |
| 2021-03-04 | ExitStatus stop signal display test: Make it Linux only | Ian Jackson | -2/+7 |
| 2021-03-03 | Add impls for iterators of Cow<OsStr> | Ryan Lopopolo | -0/+34 |
| 2021-03-03 | Avoid unnecessary Vec construction in BufReader | Caleb Sander | -4/+4 |
| 2021-03-03 | Fix std tests | Ryan Levick | -4/+4 |
| 2021-03-03 | Auto merge of #82718 - JohnTitor:rollup-vpfx3j2, r=JohnTitor | bors | -46/+49 |
| 2021-03-03 | Rollup merge of #82712 - CDirkx:cfg-target_os, r=dtolnay | Yuki Okushi | -1/+1 |
| 2021-03-03 | Rollup merge of #82589 - LinkTed:master, r=joshtriplett | Yuki Okushi | -45/+48 |
| 2021-03-03 | Auto merge of #76345 - okready:sgx-mem-range-overflow-checks, r=joshtriplett | bors | -8/+34 |
| 2021-03-03 | Remove unnecessary conditional `cfg(target_os)` for `redox` and `vxworks` | Christiaan Dirkx | -1/+1 |
| 2021-03-02 | Rollup merge of #80189 - jyn514:convert-primitives, r=poliorcetics | Yuki Okushi | -20/+15 |
| 2021-03-02 | Rollup merge of #82598 - GuillaumeGomez:rustdoc-rustc-pass, r=jyn514 | Guillaume Gomez | -1/+3 |
| 2021-03-02 | Move `std::sys::unix::platform` to `std::sys::unix::ext` | Christiaan Dirkx | -38/+40 |
| 2021-03-01 | Add missing stability attributes in libstd | Guillaume Gomez | -1/+3 |
| 2021-03-01 | Rollup merge of #82645 - rkjnsn:patch-3, r=Mark-Simulacrum | Joshua Nelson | -1/+4 |
| 2021-03-01 | Rollup merge of #82578 - camsteffen:diag-items, r=oli-obk | Joshua Nelson | -0/+1 |
| 2021-03-01 | Add diagnostic items | Cameron Steffen | -0/+1 |
| 2021-02-28 | Clarify that SyncOnceCell::set blocks. | Erik Jensen | -1/+4 |
| 2021-02-28 | unix: Non-mutable bufs in send_vectored_with_ancillary_to | LinkTed | -45/+48 |
| 2021-02-28 | Auto merge of #82594 - nagisa:nagisa/remove-rumprun, r=petrochenkov | bors | -4/+4 |
| 2021-02-27 | Rollup merge of #82596 - matklad:rwlock, r=sfackler | Dylan DPC | -1/+3 |
| 2021-02-27 | Rollup merge of #82561 - tspiteri:cube-root, r=Dylan-DPC | Dylan DPC | -2/+2 |
| 2021-02-27 | Rollup merge of #82395 - pickfire:see-more, r=GuillaumeGomez | Dylan DPC | -2/+2 |
| 2021-02-27 | Update library/std/src/sync/rwlock.rs | Aleksey Kladov | -1/+1 |
| 2021-02-27 | clarify RW lock's priority gotcha | Aleksey Kladov | -1/+3 |
| 2021-02-27 | Remove the x86_64-rumprun-netbsd target | Simonas Kazlauskas | -4/+4 |
| 2021-02-27 | Rollup merge of #82473 - de-vri-es:android-x86-accept4, r=m-ou-se | Dylan DPC | -8/+2 |
| 2021-02-27 | Rollup merge of #82421 - sunfishcode:wasi-metadata-size, r=alexcrichton | Dylan DPC | -0/+5 |
| 2021-02-27 | Rollup merge of #82420 - sunfishcode:wasi-docs, r=alexcrichton | Dylan DPC | -29/+91 |
| 2021-02-26 | doc: cube root, not cubic root | Trevor Spiteri | -2/+2 |
| 2021-02-26 | Rollup merge of #81940 - jhpratt:stabilize-str_split_once, r=m-ou-se | Guillaume Gomez | -1/+0 |
| 2021-02-25 | Convert primitives to use intra-doc links | Joshua Nelson | -20/+15 |
| 2021-02-25 | Rollup merge of #82467 - ojeda:tidy-normalize-safety-comments, r=kennytm | Aaron Hill | -8/+14 |
| 2021-02-25 | Rollup merge of #82464 - ehuss:unix-command-comment, r=kennytm | Aaron Hill | -17/+7 |
| 2021-02-25 | Rollup merge of #80553 - derekdreery:arc_error, r=m-ou-se | Dylan DPC | -0/+22 |
| 2021-02-25 | Use intra-doc links. | Mara | -4/+4 |