| Age | Commit message (Expand) | Author | Lines |
| 2021-06-05 | Implement `Cursor::{remaining, is_empty}` | Sören Meier | -4/+59 |
| 2021-06-05 | Rename IoSlice(Mut)::advance_slice to advance_slices | Thomas de Zeeuw | -24/+24 |
| 2021-05-29 | Add has_data_left() to BufRead | YuhanLiin | -0/+41 |
| 2021-05-29 | Add IoSlice(Mut)::advance | Thomas de Zeeuw | -2/+54 |
| 2021-05-29 | Rename IoSlice(Mut)::advance to advance_slice | Thomas de Zeeuw | -28/+27 |
| 2021-05-24 | remove cfg(bootstrap) | Pietro Albini | -4/+2 |
| 2021-05-23 | Rollup merge of #85288 - Geal:clarify-std-io-read, r=dtolnay | Dylan DPC | -1/+7 |
| 2021-05-20 | Rollup merge of #85275 - CDirkx:memchr, r=m-ou-se | Guillaume Gomez | -2/+2 |
| 2021-05-19 | Auto merge of #85176 - a1phyr:impl_clone_from, r=yaahc | bors | -1/+18 |
| 2021-05-18 | fix typo | Jorge Ferreira | -2/+2 |
| 2021-05-14 | add an example to explain std::io::Read::read returning 0 in some cases | Geoffroy Couprie | -1/+7 |
| 2021-05-14 | Move `std::memchr` to `sys_common` | Christiaan Dirkx | -2/+2 |
| 2021-05-11 | Override `clone_from` for some types | Benoît du Garreau | -1/+18 |
| 2021-05-10 | io::Seek::rewind: Set tracking issue | Ian Jackson | -1/+1 |
| 2021-05-10 | Fix typo in doc | Ian Jackson | -1/+1 |
| 2021-05-10 | io::Seek: Provide rewind() | Ian Jackson | -0/+35 |
| 2021-05-10 | io::Seek: Mention that seeking can fail due to buffer flush fail | Ian Jackson | -0/+2 |
| 2021-05-06 | Auto merge of #79930 - tgnottingham:bufwriter_performance, r=m-ou-se | bors | -39/+178 |
| 2021-05-03 | Correct stability of ErrorKind::OutOfMemory | Kornel | -1/+1 |
| 2021-05-02 | Add ErrorKind::OutOfMemory | Kornel | -0/+6 |
| 2021-04-22 | Rework `at_exit` to `cleanup` | Christiaan Dirkx | -23/+22 |
| 2021-04-21 | Replace all `fmt.pad` with `debug_struct` | Christiaan Dirkx | -9/+9 |
| 2021-04-18 | Bump to 1.53.0 | CDirkx | -1/+1 |
| 2021-04-18 | Rename `NotSupported` to `Unsupported` | Christiaan Dirkx | -4/+6 |
| 2021-04-18 | Bump since to 1.52.0 | CDirkx | -1/+1 |
| 2021-04-18 | Add and insta-stabilize `std::io::ErrorKind::NotSupported` | Christiaan Dirkx | -0/+5 |
| 2021-04-13 | BufWriter: improve safety comment | Tyson Nottingham | -6/+10 |
| 2021-04-13 | BufWriter: simplify buffer draining | Tyson Nottingham | -5/+1 |
| 2021-04-13 | BufWriter: use #[cold] and less aggressive #[inline] hints | Tyson Nottingham | -1/+3 |
| 2021-04-13 | BufWriter: handle possibility of overflow | Tyson Nottingham | -15/+39 |
| 2021-04-13 | BufWriter: optimize for write sizes less than buffer size | Tyson Nottingham | -24/+32 |
| 2021-04-13 | BufWriter: avoid using expensive Vec methods | Tyson Nottingham | -12/+75 |
| 2021-04-13 | BufWriter: apply #[inline] / #[inline(never)] optimizations | Tyson Nottingham | -24/+66 |
| 2021-04-13 | Auto merge of #82992 - philippeitis:stabilize_bufreader_seek_relative, r=work... | bors | -1/+1 |
| 2021-04-02 | Auto merge of #80965 - camelid:rename-doc-spotlight, r=jyn514 | bors | -2/+4 |
| 2021-03-27 | Rollup merge of #83555 - m-ou-se:inline-io-error-new-const, r=jackh726 | Dylan DPC | -0/+8 |
| 2021-03-28 | Rollup merge of #83560 - m-ou-se:io-chain-debug, r=sfackler | Yuki Okushi | -7/+1 |
| 2021-03-27 | Derive Debug for io::Chain instead of manually implementing it. | Mara Bos | -7/+1 |
| 2021-03-27 | Use DebugStruct::finish_non_exhaustive() in std. | Mara Bos | -1/+1 |
| 2021-03-27 | Add #[inline] to io::Error methods. | Mara Bos | -0/+8 |
| 2021-03-24 | Rollup merge of #83353 - m-ou-se:io-error-avoid-alloc, r=nagisa | Dylan DPC | -15/+63 |
| 2021-03-21 | Bump stable version of bufreader_seek_relative. | Mara Bos | -1/+1 |
| 2021-03-21 | Fix typos | Mara Bos | -2/+2 |
| 2021-03-21 | Use io::Error::new_const everywhere to avoid allocations. | Mara Bos | -15/+21 |
| 2021-03-21 | Add test for io::Error::new_const. | Mara Bos | -0/+10 |
| 2021-03-21 | Add internal io::Error::new_const tot avoid allocations. | Mara Bos | -0/+26 |
| 2021-03-21 | Add test for io::Error's size. | Mara Bos | -0/+6 |
| 2021-03-19 | Rollup merge of #82892 - jix:clarify-read-read, r=joshtriplett | Dylan DPC | -2/+7 |
| 2021-03-18 | Clarify docs for Read::read's return value | Jannis Harder | -2/+7 |
| 2021-03-15 | Rename `#[doc(spotlight)]` to `#[doc(notable_trait)]` | Camelid | -2/+4 |