| Age | Commit message (Expand) | Author | Lines |
| 2022-05-29 | Use Box::new() instead of box syntax in std tests | est31 | -3/+3 |
| 2022-05-19 | impl Read and Write for VecDeque<u8> | Evan Richter | -0/+48 |
| 2022-05-09 | Use Rust 2021 prelude in std itself. | Mara Bos | -3/+0 |
| 2022-05-03 | std::io: Modify some ReadBuf method signatures to return `&mut Self` | Nick Cameron | -7/+11 |
| 2022-04-07 | Rollup merge of #95185 - m-ou-se:stabilize-stdin-lines, r=Mark-Simulacrum | Dylan DPC | -2/+1 |
| 2022-04-06 | Bump stabilization of stdin_forwarders to 1.62.0. | Mara Bos | -1/+1 |
| 2022-03-30 | Auto merge of #95241 - Gankra:cleaned-provenance, r=workingjubilee | bors | -5/+5 |
| 2022-03-30 | Rollup merge of #95294 - sourcefrog:doc-copy, r=dtolnay | Dylan DPC | -0/+10 |
| 2022-03-29 | Warn that platform-specific behavior may change | Martin Pool | -0/+4 |
| 2022-03-29 | cleanup some of the less terrifying library code | Aria Beingessner | -1/+1 |
| 2022-03-29 | Make the stdlib largely conform to strict provenance. | Aria Beingessner | -5/+5 |
| 2022-03-29 | Indicate the correct error code in the `compile_fail` block. | Thom Chiovoloni | -1/+1 |
| 2022-03-24 | Document Linux kernel handoff in std::io::copy and std::fs::copy | Martin Pool | -0/+6 |
| 2022-03-23 | Add a `compile_fail` doctest to check that `io::Error: !UnwindSafe` | Thom Chiovoloni | -0/+9 |
| 2022-03-23 | Ensure io::Error's bitpacked repr doesn't accidentally impl UnwindSafe | Thom Chiovoloni | -5/+6 |
| 2022-03-21 | Stabilize Stdin::lines. | Mara Bos | -2/+1 |
| 2022-03-19 | Rollup merge of #93263 - sunfishcode:sunfishcode/detatched-console-handle, r=... | Dylan DPC | -9/+70 |
| 2022-03-19 | Rollup merge of #92663 - cuviper:generic-write-cursor, r=dtolnay | Dylan DPC | -51/+86 |
| 2022-03-18 | Bump impl Write for Cursor<[u8; N]> to 1.61 | David Tolnay | -1/+1 |
| 2022-03-16 | changed wording | Dylan DPC | -1/+2 |
| 2022-03-15 | Improve the explanation about the behaviour of read_line | zed.zy | -1/+1 |
| 2022-03-11 | Update tests. | Mara Bos | -4/+4 |
| 2022-03-11 | Update advance and advance_slices docs. | Mara Bos | -14/+28 |
| 2022-03-11 | Panic when advance_slices()'ing too far. | Mara Bos | -2/+6 |
| 2022-03-10 | Use implicit capture syntax in format_args | T-O-R-U-S | -24/+23 |
| 2022-03-04 | Consistently present absent stdio handles on Windows as NULL handles. | Dan Gohman | -9/+70 |
| 2022-03-04 | Rollup merge of #93965 - Mark-Simulacrum:owned-stdio, r=dtolnay | Dylan DPC | -228/+18 |
| 2022-02-24 | word wrpa | Dylan DPC | -5/+5 |
| 2022-02-24 | word wrpa | Dylan DPC | -6/+9 |
| 2022-02-23 | Update library/std/src/io/error.rs | Dylan DPC | -1/+1 |
| 2022-02-23 | add some more summary from pr discussion | Dylan DPC | -1/+1 |
| 2022-02-23 | add some more summary from pr discussion | Dylan DPC | -2/+4 |
| 2022-02-23 | add matching to errorkind | Dylan DPC | -0/+8 |
| 2022-02-13 | Make default stdio lock() return 'static handles | Mark Rousskov | -228/+18 |
| 2022-02-10 | Rename to `InvalidFilename` | Yuki Okushi | -6/+5 |
| 2022-02-10 | Fix description of FilenameInvalid | Josh Triplett | -1/+1 |
| 2022-02-10 | Rename `FilenameTooLong` to `FilenameInvalid` | Yuki Okushi | -2/+2 |
| 2022-02-04 | Add more tests for io::Error packing, and fix some comments that weren't quit... | Thom Chiovoloni | -16/+101 |
| 2022-02-04 | Update documentation somewhat | Thom Chiovoloni | -12/+26 |
| 2022-02-04 | Use wrapping pointer arithmetic in the bitpacked io::Error | Thom Chiovoloni | -8/+15 |
| 2022-02-04 | Elaborate some in the documentation and respond to some review comments | Thom Chiovoloni | -8/+19 |
| 2022-02-04 | Update library/std/src/io/error/repr_bitpacked.rs | Thom Chiovoloni | -1/+1 |
| 2022-02-04 | Fix comment typos noticed by code review. | Thom Chiovoloni | -2/+2 |
| 2022-02-04 | Address address comments, improve comments slightly | Thom Chiovoloni | -5/+20 |
| 2022-02-04 | Optimize io::error::Repr layout on 64 bit targets. | Thom Chiovoloni | -4/+364 |
| 2022-02-04 | Hide Repr details from io::Error, and rework `io::Error::new_const`. | Thom Chiovoloni | -91/+178 |
| 2022-01-31 | Rollup merge of #93090 - jyn514:errorkind-asstr, r=dtolnay | Eric Huss | -1/+17 |
| 2022-01-20 | delete `Stdin::split` forwarder | Taylor Yu | -24/+1 |
| 2022-01-19 | Write for Cursor with a custom Allocator | Josh Stone | -7/+23 |
| 2022-01-19 | impl Write for Cursor<[u8; N]> | Josh Stone | -0/+35 |