| Age | Commit message (Expand) | Author | Lines |
| 2023-04-21 | Rollup merge of #110633 - scottmcm:more-take, r=thomcc | Dylan DPC | -4/+4 |
| 2023-04-20 | More `mem::take` in `library` | Scott McMurray | -4/+4 |
| 2023-04-20 | Specialize some `io::Read` and `io::Write` methods for `VecDeque<u8>` and `&[... | Benoît du Garreau | -0/+54 |
| 2023-04-20 | Implement `BufRead` for `VecDeque<u8>` | Benoît du Garreau | -0/+18 |
| 2023-04-14 | Rollup merge of #110244 - kadiwa4:unnecessary_imports, r=JohnTitor | Matthias Krüger | -1/+0 |
| 2023-04-12 | remove some unneeded imports | KaDiWa | -1/+0 |
| 2023-04-10 | Stabilize IsTerminal | Josh Triplett | -3/+4 |
| 2023-04-06 | Remove an unnecessary `mut` in `BufWriter::into_parts`. | 管唯宇 | -1/+1 |
| 2023-03-28 | Add "Platform-specific behavior" heading and link to changes disclaimer | Josh Triplett | -0/+5 |
| 2023-03-28 | Document the heuristics IsTerminal uses on Windows | Josh Triplett | -0/+4 |
| 2023-03-27 | Rollup merge of #98651 - mattfbacon:master, r=ChrisDenton | Matthias Krüger | -1/+1 |
| 2023-03-23 | Rollup merge of #106964 - workingjubilee:crouching-ioerror-hidden-documentati... | Matthias Krüger | -2/+10 |
| 2023-03-21 | Rollup merge of #108326 - tmiasko:read-buf, r=thomcc | nils | -1/+12 |
| 2023-03-17 | Remove irrelevant docs on error kinds | Jubilee Young | -10/+4 |
| 2023-03-11 | read_buf_exact: on error, all read bytes are appended to the buffer | Tomasz Miąsko | -2/+16 |
| 2023-03-06 | Implement read_buf for a few more types | Tomasz Miąsko | -1/+12 |
| 2023-03-03 | Update library/std/src/io/mod.rs | Michal Nazarewicz | -1/+1 |
| 2023-03-01 | Update library/std/src/io/mod.rs | Michal Nazarewicz | -3/+3 |
| 2023-02-08 | std: add tracking issue for `RawOsError` | joboet | -2/+2 |
| 2023-02-03 | Update library/std/src/io/mod.rs | Michal Nazarewicz | -4/+4 |
| 2023-01-31 | std: add type alias for raw OS errors | joboet | -10/+26 |
| 2023-01-24 | io: soften ‘at most one write attempt’ requirement in io::Write::write | Michal Nazarewicz | -5/+6 |
| 2023-01-21 | Remove unnecessary `&format!` | Nikolai Vazquez | -1/+1 |
| 2023-01-17 | Rollup merge of #106148 - chenyukang:yukang/fix-105061-unused, r=lcnr | Dylan DPC | -4/+4 |
| 2023-01-16 | Explain the "no-error" io::Error case | Jubilee Young | -2/+16 |
| 2023-01-14 | Remove various double spaces in source comments. | André Vennberg | -2/+2 |
| 2023-01-14 | fix issues in unused lint | yukang | -4/+4 |
| 2023-01-01 | Document a way to limit read_line length | Kornel | -2/+3 |
| 2023-01-01 | Document read_line gotcha | Kornel | -2/+5 |
| 2022-12-30 | Replace libstd, libcore, liballoc in line comments. | jonathanCogan | -4/+4 |
| 2022-11-14 | std: move `ReentrantMutex` to `sync` | joboet | -2/+1 |
| 2022-10-29 | Add BorrowedBuf::filled_mut | Alex Saveau | -0/+7 |
| 2022-10-24 | Fix grammar in docs for std::io::Read | Jesse Ruderman | -2/+2 |
| 2022-10-15 | Auto merge of #98033 - joshtriplett:is-terminal-fd-handle, r=thomcc | bors | -0/+31 |
| 2022-10-15 | Add `IsTerminal` trait to determine if a descriptor or handle is a terminal | Josh Triplett | -0/+31 |
| 2022-10-14 | Rollup merge of #103067 - Nilstrieb:tidy-likes-the-alphabet, r=jackh726 | Matthias Krüger | -1/+2 |
| 2022-10-14 | Rollup merge of #102781 - StackOverflowExcept1on:master, r=joshtriplett | Matthias Krüger | -1/+2 |
| 2022-10-14 | Add some tidy-alphabetical | nils | -1/+2 |
| 2022-10-14 | Tweak grammar | Josh Triplett | -1/+1 |
| 2022-10-13 | fix small word dupe typos | Rageking8 | -1/+1 |
| 2022-10-12 | Rollup merge of #102811 - the8472:bufread-memset, r=m-ou-se | Dylan DPC | -3/+6 |
| 2022-10-10 | Rollup merge of #102794 - dtolnay:termination, r=thomcc | Dylan DPC | -6/+23 |
| 2022-10-08 | use memset to initialize a readbuf | The 8472 | -3/+6 |
| 2022-10-07 | Make tests capture the error printed by a Result return | David Tolnay | -6/+23 |
| 2022-10-07 | Improved documentation for `std::io::Error` | StackOverflowExcept1on | -1/+2 |
| 2022-10-06 | Avoid defensive re-initialization of the BufReader buffer | Ben Kimock | -3/+48 |
| 2022-09-26 | remove cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2022-09-26 | replace stabilization placeholders | Pietro Albini | -1/+1 |
| 2022-09-07 | stdio: Document no support for writing to non-blocking stdio/stderr | Usama Arif | -0/+3 |
| 2022-09-05 | std: fix cleanup for uninitialized stdout (#101375) | joboet | -8/+17 |