summaryrefslogtreecommitdiffstats
path: root/tokio/src/io/mod.rs
AgeCommit message (Expand)Author
2020-10-22io: Add AsyncFd, fix io::driver shutdown (#2903)bdonlan
2020-10-19io: add copy_buf (#2884)Zahari Dichev
2020-10-12rt: Remove `threaded_scheduler()` and `basic_scheduler()` (#2876)Lucio Franco
2020-10-09io: make Seek and Copy private (#2935)Taiki Endo
2020-09-24docs: use #[doc(no_inline)] on re-exports (#2874)Taiki Endo
2020-09-23io: use intrusive wait list for I/O driver (#2828)Sean McArthur
2020-09-23io: fix stdout and stderr buffering on windows (#2734)Mikail Bagishov
2020-09-08io: move StreamReader and ReaderStream into tokio_util (#2788)Alice Ryhl
2020-08-13io: change AsyncRead to use a ReadBuf (#2758)Sean McArthur
2020-07-23io: always re-export std::io (#2606)Taiki Endo
2020-07-22io: add `io::duplex()` as bidirectional reader/writer (#2661)Sean McArthur
2020-06-18docs: BufWriter does not flush on drop (#2487)Artem Pyanykh
2020-05-31docs: use intra-links in the docs (#2575)xliiv
2020-05-21io: remove zeroing for AsyncRead implementors (#2525)Mikail Bagishov
2020-05-14docs: improve discoverability of codec module (#2523)Geoff Shannon
2020-04-12docs: replace some html links with rustdoc paths (#2381)xliiv
2020-04-02io: Add StreamReader (#2052)Alice Ryhl
2019-12-10io: add AsyncSeek trait (#1924)Michael Howell
2019-11-23docs: improve tokio::io API documentation (#1815)Carl Lerche
2019-11-21runtime: cleanup and add config options (#1807)Carl Lerche
2019-11-20docs: refresh `tokio::io` API docs (#1803)Eliza Weisman
2019-11-20io: flatten `split` module (#1802)Carl Lerche
2019-11-20Refactor the I/O driver, extracting slab to `tokio::util`. (#1792)Carl Lerche
2019-11-18chore: refine feature flags (#1785)Carl Lerche
2019-11-16io: expose std{in, out, err} under io feature (#1759)Taiki Endo
2019-11-15Limit `futures` dependency to `Stream` via feature flag (#1774)Carl Lerche
2019-10-26io: move into `tokio` crate (#1691)Carl Lerche
2019-10-21fs: move into `tokio` (#1672)Carl Lerche
2019-08-02io: move io helpers back into `tokio-io` (#1377)Lucio Franco
2019-08-02io: Add `AsyncWriteExt::flush` (#1376)Lucio Franco
2019-07-19tokio: add AsyncReadExt::read_to_string (#1326)Taiki Endo
2019-07-15tokio: add AsyncBufReadExt::linesTaiki Endo
2019-07-15tokio: add AsyncBufReadExt::read_lineTaiki Endo
2019-07-15tokio: add AsyncBufReadExt::read_untilTaiki Endo
2019-07-15io: add AsyncBufRead traitTaiki Endo
2019-07-09tokio: add AsyncReadExt::read_to_end (#1279)Carl Lerche
2019-07-09tokio: add AsyncWriteExt::write_all (#1277)Carl Lerche
2019-07-01io: fix documents (#1231)Taiki Endo
2019-06-27chore: format code and enable rustfmt CI task (#1212)Carl Lerche
2019-06-26tokio: move I/O helpers to ext traits (#1204)Carl Lerche
2019-06-26tokio: add read_exact method (#1202)Bhargav
2019-06-25tokio: Add io copy, read, and write (#1187)Lucio Franco