| Age | Commit message (Expand) | Author | Lines |
| 2019-10-20 | Fix parameter name in documentation | Adrian Heine né Lang | -1/+1 |
| 2019-09-16 | Fix inconsistent link formatting | Ivan Tham | -6/+6 |
| 2019-09-11 | Fix inconsistent link formatting. | Tomasz Różański | -4/+4 |
| 2019-09-03 | Changed comment to better reflect std's exceptional situation | Daniel Henry-Mantilla | -4/+4 |
| 2019-09-03 | Added warning around code with reference to uninit bytes | Daniel Henry-Mantilla | -0/+8 |
| 2019-08-31 | clarify that not all errors are observed | John Erickson | -2/+3 |
| 2019-08-31 | Add in generic type to description of BufReader and BufWriter | John Erickson | -17/+17 |
| 2019-08-31 | Update BufWriter example to include call to flush() | John Erickson | -6/+7 |
| 2019-08-06 | avoid unnecessary reservations in std::io::Take::read_to_end | Jack O'Connor | -8/+58 |
| 2019-08-03 | Add {IoSlice, IoSliceMut}::advance | Thomas de Zeeuw | -1/+199 |
| 2019-08-01 | Rollup merge of #62644 - arnottcr:std_io-doc, r=steveklabnik | Pietro Albini | -1/+1 |
| 2019-07-28 | Rollup merge of #62806 - mati865:clippy, r=TimNN | Mazdak Farrokhzad | -2/+2 |
| 2019-07-22 | Rollup merge of #62845 - RalfJung:read, r=rkruppe | Mazdak Farrokhzad | -2/+2 |
| 2019-07-21 | read: fix doc comment | Ralf Jung | -2/+2 |
| 2019-07-19 | ONCE_INIT is deprecated-in-future only for bootstrap | Ralf Jung | -1/+1 |
| 2019-07-19 | do not use mem::uninitialized in std::io | Ralf Jung | -14/+10 |
| 2019-07-18 | Fix clippy::len_zero warnings | Mateusz Mikuła | -2/+2 |
| 2019-07-16 | Remove last use of mem::uninitialized from std::io::util | nathanwhit | -4/+9 |
| 2019-07-13 | simplify std::io::Write::write rustdoc | Colin Arnott | -1/+1 |
| 2019-07-05 | Rollup merge of #62381 - pawroman:fix_typo_in_write_vectored, r=Centril | Mazdak Farrokhzad | -1/+1 |
| 2019-07-04 | Permit use of mem::uninitialized via allow(deprecated) | Mark Rousskov | -0/+1 |
| 2019-07-04 | Fix a typo in Write::write_vectored docs | Paweł Romanowski | -1/+1 |
| 2019-06-25 | tweak wording | Ralf Jung | -3/+3 |
| 2019-06-24 | call out explicitly that general read needs to be called with an initialized ... | Ralf Jung | -1/+10 |
| 2019-05-29 | Rollup merge of #61235 - lzutao:stabilize-bufreader_buffer, r=Centril | Mazdak Farrokhzad | -4/+2 |
| 2019-05-27 | Stabilize bufreader_buffer feature | Lzu Tao | -4/+2 |
| 2019-05-25 | Annotate test with #[test] | Chris Gregory | -0/+1 |
| 2019-05-25 | Add test that impl Seek for BufReader correctly invalidates buffer between seeks | Chris Gregory | -0/+34 |
| 2019-05-20 | Rollup merge of #60511 - taiki-e:libstd-intra-doc, r=Dylan-DPC | Mazdak Farrokhzad | -1/+1 |
| 2019-05-18 | Simplify BufRead doc example using NLL | Brent Kerby | -9/+4 |
| 2019-05-09 | Rollup merge of #60234 - tesaguri:cursor-default, r=Amanieu | Mazdak Farrokhzad | -1/+1 |
| 2019-05-08 | Inline some Cursor calls for slices | Peter Todd | -0/+6 |
| 2019-05-04 | Fix intra-doc link resolution failure on re-exporting libstd | Taiki Endo | -1/+1 |
| 2019-04-29 | Rollup merge of #60334 - sfackler:stable-iovec, r=alexcrichton | Mazdak Farrokhzad | -89/+103 |
| 2019-04-27 | tidy | Steven Fackler | -10/+24 |
| 2019-04-27 | Stabilized vectored IO | Steven Fackler | -87/+87 |
| 2019-04-26 | Use "capacity" as parameter name in with_capacity() methods | Matthias Geier | -7/+7 |
| 2019-04-24 | std: Derive `Default` for `io::Cursor` | Daiki Mizukami | -1/+1 |
| 2019-04-14 | Rollup merge of #59906 - czipperz:bufwriter-use-getmut, r=kennytm | Mazdak Farrokhzad | -2/+2 |
| 2019-04-11 | Make BufWriter use get_mut instead of manipulating inner in Write implementation | Chris Gregory | -2/+2 |
| 2019-04-10 | std: Add `{read,write}_vectored` for more types | Alex Crichton | -1/+50 |
| 2019-03-31 | libstd: deny(elided_lifetimes_in_paths) | Mazdak Farrokhzad | -34/+34 |
| 2019-03-29 | In doc examples, don't ignore read/write results | Matt Brubeck | -6/+19 |
| 2019-03-28 | Use write_all instead of write in example code | Matt Brubeck | -7/+7 |
| 2019-03-28 | Rollup merge of #59474 - czipperz:bufwriter-fix-link-capitalization, r=Centril | Mazdak Farrokhzad | -2/+2 |
| 2019-03-27 | Fix link capitalization in documentation of std::io::BufWriter. | Chris Gregory | -2/+2 |
| 2019-03-27 | Document that `std::io::BufReader` discards contents on drop | Chris Gregory | -0/+4 |
| 2019-03-22 | Add tracking issue number for `seek_convenience` | Lukas Kalbertodt | -2/+2 |
| 2019-03-21 | Auto merge of #58422 - LukasKalbertodt:seek-convenience, r=alexcrichton | bors | -2/+134 |
| 2019-03-21 | Auto merge of #58913 - Milack27:patch_buf_reader, r=joshtriplett | bors | -2/+45 |