| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2020-11-10 | Use Cell instead of RefCell for LOCAL_{STDOUT,STDERR}. | Mara Bos | -15/+16 |
| 2020-11-10 | Use Vec<u8> for LOCAL_STD{OUT,ERR} instead of dyn Write. | Mara Bos | -38/+23 |
| 2020-11-10 | Remove io::LocalOutput and use Arc<Mutex<dyn>> for local streams. | Mara Bos | -52/+21 |
| 2020-11-08 | Rollup merge of #78811 - a1phyr:const_io_structs, r=dtolnay | Mara Bos | -7/+27 |
| 2020-11-06 | Add tracking issue | Benoît du Garreau | -6/+6 |
| 2020-11-06 | Make some std::io functions `const` | Benoît du Garreau | -7/+27 |
| 2020-11-05 | document HACKs | Peter Jaszkowiak | -0/+2 |
| 2020-11-05 | Intra-doc links for std::io::buffered | Peter Jaszkowiak | -3/+3 |
| 2020-10-27 | Auto merge of #78227 - SergioBenitez:test-stdout-threading, r=m-ou-se | bors | -9/+39 |
| 2020-10-26 | fix(docs): typo in BufWriter documentation | Michele Lacchia | -1/+1 |
| 2020-10-22 | Only load LOCAL_STREAMS if they are being used | Sergio Benitez | -0/+5 |
| 2020-10-22 | Capture output from threads spawned in tests | Tyler Mandry | -9/+34 |
| 2020-10-16 | Rollup merge of #76084 - Lucretiel:split-buffered, r=dtolnay | Dylan DPC | -1438/+1463 |
| 2020-09-27 | Optimize set_{panic,print}(None). | Mara Bos | -0/+8 |
| 2020-09-27 | Relax memory ordering of LOCAL_STREAMS and document it. | Mara Bos | -5/+17 |
| 2020-09-27 | Only use LOCAL_{STDOUT,STDERR} when set_{print/panic} is used. | Mara Bos | -23/+40 |
| 2020-09-27 | Auto merge of #77154 - fusion-engineering-forks:lazy-stdio, r=dtolnay | bors | -100/+40 |
| 2020-09-24 | Call ReentrantMutex::init() in stdout(). | Mara Bos | -1/+3 |
| 2020-09-24 | Drop use of Arc from Stdin and Stdout. | Mara Bos | -27/+23 |
| 2020-09-24 | Remove std::io::lazy::Lazy in favour of SyncOnceCell | Mara Bos | -98/+40 |
| 2020-09-21 | Rollup merge of #76275 - FedericoPonzi:immutable-write-impl-73836, r=dtolnay | ecstatic-morse | -0/+78 |
| 2020-09-21 | Updates stability attributes to the current nightly version | Federico Ponzi | -3/+3 |
| 2020-09-11 | Deduplicates io::Write implementations | Federico Ponzi | -14/+14 |
| 2020-09-10 | move buffered.rs to mod.rs | Nathan West | -1/+1 |
| 2020-09-10 | Refactor io/buffered.rs into submodules | Nathan West | -1306/+1331 |
| 2020-09-07 | Auto merge of #74366 - t-rapp:tr-bufreader-pos, r=LukasKalbertodt | bors | -0/+87 |
| 2020-09-07 | Implement Seek::stream_position() for BufReader | Tobias Rapp | -0/+87 |
| 2020-09-03 | More implementations of Write for immutable refs | Federico Ponzi | -0/+78 |
| 2020-09-02 | Read: adjust a FIXME reference | Ralf Jung | -5/+8 |
| 2020-09-01 | Auto merge of #76047 - Dylan-DPC:rename/maybe, r=RalfJung | bors | -4/+4 |
| 2020-08-31 | std: move "mod tests/benches" to separate files | Lzu Tao | -2164/+2149 |
| 2020-08-30 | update fixmes | DPC | -1/+1 |
| 2020-08-29 | rename get_{ref, mut} to assume_init_{ref,mut} in Maybeuninit | DPC | -3/+3 |
| 2020-08-28 | Auto merge of #72808 - Lucretiel:line-writer-reimpl, r=Amanieu | bors | -176/+785 |
| 2020-08-27 | Once again, x.py tidy | Nathan West | -5/+1 |
| 2020-08-27 | Typo fixes | Nathan West | -5/+5 |
| 2020-08-27 | Improvements to `LineWriter::write_all` | Nathan West | -26/+79 |
| 2020-08-23 | Convert str -> prim@str in `std` | Joshua Nelson | -1/+1 |
| 2020-08-21 | Remove wrapper type handling absent raw standard streams | Tomasz Miąsko | -100/+33 |
| 2020-08-21 | Make raw standard stream constructors const | Tomasz Miąsko | -3/+6 |