| Age | Commit message (Expand) | Author | Lines |
| 2023-05-26 | Rollup merge of #111940 - zirconium-n:io-read-doc-change, r=thomcc | Matthias Krüger | -3/+4 |
| 2023-05-25 | Clarify safety concern of `io::Read::read` is only relevant in unsafe code | Ziru Niu | -3/+4 |
| 2023-05-15 | wanting => want | Vagelis Prokopiou | -1/+1 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -4/+4 |
| 2023-04-26 | Rollup merge of #110419 - jsoref:spelling-library, r=jyn514 | Matthias Krüger | -7/+8 |
| 2023-04-26 | rewrite: line_long_tail_not_flushed description | Josh Soref | -3/+4 |
| 2023-04-26 | rewrite: long_line_flushed description | Josh Soref | -3/+3 |
| 2023-04-26 | Spelling library/ | Josh Soref | -1/+1 |
| 2023-04-23 | Auto merge of #110655 - ChrisDenton:read-to-end, r=joshtriplett | bors | -6/+20 |
| 2023-04-21 | Limit read size in `File::read_to_end` loop | Chris Denton | -6/+20 |
| 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-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-02-08 | std: add tracking issue for `RawOsError` | joboet | -2/+2 |
| 2023-01-31 | std: add type alias for raw OS errors | joboet | -10/+26 |
| 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-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 |