| Age | Commit message (Expand) | Author | Lines |
| 2021-01-31 | specialize io::copy to use the memory of the writer if it is a BufWriter | The8472 | -8/+136 |
| 2021-01-31 | Rollup merge of #78044 - oberien:empty-seek, r=m-ou-se | Jonas Schievink | -2/+37 |
| 2021-01-30 | impl Seek for Empty | oberien | -2/+37 |
| 2021-01-24 | Stabilize `Seek::stream_position` & change feature of `Seek::stream_len` | Lukas Kalbertodt | -5/+3 |
| 2021-01-21 | Rollup merge of #80172 - camelid:prelude-docs-consistent-punct, r=steveklabnik | Yuki Okushi | -1/+1 |
| 2021-01-19 | Auto merge of #79705 - ijackson:bufwriter-disassemble, r=m-ou-se | bors | -0/+99 |
| 2021-01-17 | Add benchmark and fast path for BufReader::read_exact | Ben Kimock | -17/+47 |
| 2021-01-14 | Rollup merge of #80895 - sfackler:read-to-end-ub, r=m-ou-se | Mara Bos | -12/+10 |
| 2021-01-14 | Rollup merge of #80217 - camelid:io-read_to_string, r=m-ou-se | Mara Bos | -0/+48 |
| 2021-01-11 | Add docs on performance | Camelid | -0/+13 |
| 2021-01-11 | clarify docs a bit | Steven Fackler | -4/+3 |
| 2021-01-11 | make check a bit more clear | Steven Fackler | -2/+3 |
| 2021-01-11 | clean up control flow | Steven Fackler | -11/+2 |
| 2021-01-11 | Fix handling of malicious Readers in read_to_end | Steven Fackler | -1/+8 |
| 2021-01-05 | Use heading for `std::prelude` and not `io::prelude` | Camelid | -1/+1 |
| 2021-01-04 | BufWriter::into_raw_parts: Add tracking issue number | Ian Jackson | -6/+6 |
| 2020-12-31 | Remove many unnecessary manual link resolves from library | Camelid | -2/+0 |
| 2020-12-30 | Add error docs | Camelid | -1/+8 |
| 2020-12-30 | Add description independent of `Read::read_to_string` | Camelid | -5/+6 |
| 2020-12-19 | Add a `std::io::read_to_string` function | Camelid | -0/+27 |
| 2020-12-18 | Use heading style for 'The I/O Prelude' in `std::io::prelude` | Camelid | -1/+1 |
| 2020-12-12 | fixup! WriterPanicked: Use debug_struct | Ian Jackson | -1/+1 |
| 2020-12-12 | WriterPanicked: Use debug_struct | Ian Jackson | -1/+3 |
| 2020-12-12 | bufwriter::WriterPanicked: Provide panicking example | Ian Jackson | -0/+24 |
| 2020-12-10 | Auto merge of #77801 - fusion-engineering-forks:pin-mutex, r=Mark-Simulacrum | bors | -32/+32 |
| 2020-12-09 | Auto merge of #78768 - mzabaluev:optimize-buf-writer, r=cramertj | bors | -14/+53 |
| 2020-12-08 | Use Pin for the 'don't move' requirement of ReentrantMutex. | Mara Bos | -25/+29 |
| 2020-12-08 | Fix outdated comment about not needing to flush stderr. | Mara Bos | -7/+3 |
| 2020-12-04 | IntoInnerError: Provide into_error | Ian Jackson | -0/+21 |
| 2020-12-04 | IntoInnerError: Provide into_parts | Ian Jackson | -0/+24 |
| 2020-12-04 | std: impl of `Write` for `&mut [u8]`: document the buffer full error | Ian Jackson | -0/+4 |
| 2020-12-04 | BufWriter: Provide into_raw_parts | Ian Jackson | -0/+73 |
| 2020-11-22 | Reduce branching in write_vectored for BufWriter | Mikhail Zabaluev | -14/+9 |
| 2020-11-22 | Fix is_write_vectored in LineWriterShim | Mikhail Zabaluev | -1/+7 |
| 2020-11-22 | Make is_write_vectored return true for BufWriter | Mikhail Zabaluev | -1/+1 |
| 2020-11-22 | Optimize write_vectored for BufWriter | Mikhail Zabaluev | -12/+50 |
| 2020-11-17 | Fix typo in `std::io::Write` docs | William Chargin | -2/+2 |
| 2020-11-16 | Rollup merge of #78714 - m-ou-se:simplify-local-streams, r=KodrAus | Mara Bos | -152/+47 |
| 2020-11-14 | Auto merge of #75272 - the8472:spec-copy, r=KodrAus | bors | -74/+102 |
| 2020-11-13 | limit visibility of copy offload helpers to sys::unix module | The8472 | -182/+0 |
| 2020-11-13 | move copy specialization tests to their own module | The8472 | -181/+182 |
| 2020-11-13 | move copy specialization into sys::unix module | The8472 | -377/+8 |
| 2020-11-13 | add benchmarks | The8472 | -1/+131 |
| 2020-11-13 | reduce syscalls by inferring FD types based on source struct instead of calli... | The8472 | -66/+102 |
| 2020-11-13 | add forwarding specializations for &mut variants | The8472 | -0/+21 |
| 2020-11-13 | prioritize sendfile over splice since it results in fewer context switches wh... | The8472 | -16/+16 |
| 2020-11-13 | move tests module into separate file | The8472 | -57/+52 |
| 2020-11-13 | hide unused exports on other platforms | The8472 | -3/+3 |
| 2020-11-13 | specialize io::copy to use copy_file_range, splice or sendfile | The8472 | -73/+469 |
| 2020-11-10 | Merge set_panic and set_print into set_output_capture. | Mara Bos | -90/+30 |