| Age | Commit message (Expand) | Author | Lines |
| 2024-03-10 | io::Read trait: make it more clear when we are adressing implementations vs c... | Ralf Jung | -10/+7 |
| 2024-03-09 | Rollup merge of #121403 - kornelski:io-oom, r=dtolnay | Guillaume Boisseau | -2/+2 |
| 2024-02-21 | Remove unnecessary map_err | Kornel | -2/+2 |
| 2024-02-20 | Delete architecture-specific memchr code in std::sys | Arthur Carcano | -1/+1 |
| 2024-02-19 | Auto merge of #105917 - a1phyr:read_chain_more_impls, r=workingjubilee | bors | -3/+55 |
| 2024-02-07 | Make `io::BorrowedCursor::advance` safe | Benoît du Garreau | -10/+2 |
| 2024-02-05 | Rollup merge of #120607 - conradludgate:fix-120603, r=dtolnay | Matthias Krüger | -1/+6 |
| 2024-02-03 | fix #120603 by adding a check in default_read_buf | Conrad Ludgate | -1/+6 |
| 2024-01-31 | Improve `io::Read::read_buf_exact` error case | Benoît du Garreau | -1/+4 |
| 2024-01-29 | Handle out of memory errors in io:Read::read_to_end() | Kornel | -1/+37 |
| 2023-11-28 | Rollup merge of #118222 - the8472:copy-use-vec-write, r=m-ou-se | Matthias Krüger | -37/+81 |
| 2023-11-26 | unify read_to_end and io::copy impls for reading into a Vec | The 8472 | -37/+81 |
| 2023-11-24 | Rollup merge of #116807 - seanlinsley:patch-2, r=thomcc | Matthias Krüger | -0/+4 |
| 2023-11-23 | Auto merge of #98943 - WilliamVenner:feat/bufread_skip_until, r=dtolnay | bors | -0/+84 |
| 2023-11-19 | Rollup merge of #116750 - fintelia:seek_seek_relative, r=Mark-Simulacrum | Takayuki Maeda | -0/+30 |
| 2023-11-09 | Move `BorrowedBuf` and `BorrowedCursor` from `std:io` to `core::io` | John Millikin | -2/+1 |
| 2023-11-04 | Improve documentation | Jonathan Behrens | -1/+5 |
| 2023-10-29 | Add tracking issue | Jonathan Behrens | -1/+1 |
| 2023-10-27 | Hide internal methods from documentation | Jacob Pratt | -0/+1 |
| 2023-10-23 | Fix invalid stability attribute features in standard library | David Tolnay | -4/+4 |
| 2023-10-20 | Specialize `Bytes<R>::next` when `R` is a `BufReader`. | Nicholas Nethercote | -10/+40 |
| 2023-10-16 | Improve rewind documentation | Sean Linsley | -0/+4 |
| 2023-10-16 | Inline `Bytes::next` and `Bytes::size_hint`. | Nicholas Nethercote | -0/+2 |
| 2023-10-14 | Add Seek::seek_relative | Jonathan Behrens | -0/+26 |
| 2023-10-07 | Remove unnecessary tmp variable in default_read_exact | Wilfred Hughes | -2/+1 |
| 2023-10-05 | Add more diagnostic items for clippy | Jason Newcomb | -0/+2 |
| 2023-09-23 | Avoid overflow in `IoSlice::advance_slices` | Eduardo Sánchez Muñoz | -16/+19 |
| 2023-09-22 | Auto merge of #114780 - RalfJung:io-safety, r=Amanieu | bors | -1/+47 |
| 2023-09-03 | Use std::io::Error::is_interrupted everywhere | Ben Kimock | -1/+1 |
| 2023-08-29 | further expand on Arc and Box analogy | Ralf Jung | -3/+6 |
| 2023-08-25 | Add a new helper to avoid calling io::Error::kind | Ben Kimock | -7/+7 |
| 2023-08-22 | clarify what you cannot do | Ralf Jung | -3/+3 |
| 2023-08-22 | typos and wording | Ralf Jung | -3/+3 |
| 2023-08-16 | Partially revert #107200 | Josh Triplett | -3/+3 |
| 2023-08-14 | reference-counting analogy | Ralf Jung | -20/+23 |
| 2023-08-14 | reword the paragraph on file description ownership | Ralf Jung | -9/+10 |
| 2023-08-14 | don't link to RFCs, they are not up-to-date docs | Ralf Jung | -2/+1 |
| 2023-08-14 | wording; and explain some of the possible consequences of violating io-safety | Ralf Jung | -1/+7 |
| 2023-08-14 | typos | Ralf Jung | -1/+1 |
| 2023-08-13 | add more explicit I/O safety documentation | Ralf Jung | -1/+35 |
| 2023-07-26 | Add tests and comments about `read_to_string` and `read_line` specializations | Benoît du Garreau | -0/+6 |
| 2023-07-26 | `io::Chain`: specialize some `BufRead` methods | Benoît du Garreau | -3/+16 |
| 2023-07-26 | `io::Chain`: specialize some `Read` methods | Benoît du Garreau | -0/+33 |
| 2023-06-18 | Rollup merge of #107200 - mina86:c, r=Amanieu | Matthias Krüger | -5/+6 |
| 2023-06-16 | Rollup merge of #111074 - WaffleLapkin:🌟unsizes_your_buf_reader🌟, r=Ama... | Michael Goulet | -1/+1 |
| 2023-05-25 | Clarify safety concern of `io::Read::read` is only relevant in unsafe code | Ziru Niu | -3/+4 |
| 2023-05-18 | Add tracking issue ID for `bufread_skip_until` feature gate | William Venner | -1/+1 |
| 2023-05-01 | Relax implicit `R: Sized` bound on `BufReader<R>` | Maybe Waffle | -1/+1 |
| 2023-04-28 | replace version placeholders | Pietro Albini | -1/+1 |
| 2023-04-23 | Auto merge of #110655 - ChrisDenton:read-to-end, r=joshtriplett | bors | -5/+19 |