summaryrefslogtreecommitdiffstats
path: root/tokio/tests
AgeCommit message (Expand)Author
2020-01-24future: provide try_join! macro (#2169)Carl Lerche
2020-01-24stream: add StreamExt::timeout() (#2149)Juan Alvarez
2020-01-24rt: improve "no runtime" panic messages (#2145)Avery Harnish
2020-01-24fs: add fs::copy (#2079)Dominic
2020-01-23future: provide join! macro (#2158)Carl Lerche
2020-01-22Provide `select!` macro (#2152)Carl Lerche
2020-01-22net: add `ReadHalf::{poll,poll_peak}` (#2151)Kevin Leimkuhler
2020-01-21io: simplify split check (#2144)Lucio Franco
2020-01-21fix: Prevent undefined behaviour from malicious AsyncRead impl (#2030)Markus Westerlind
2020-01-20Add a method to test if split streams come from the same stream. (#1762)Maarten de Vries
2020-01-17task: Introduce a new pattern for task-local storage (#2126)Lucio Franco
2020-01-16chore: minor fixes (#2121)Artem Vorotnikov
2020-01-14chore: clippy fixes (#2110)Artem Vorotnikov
2020-01-13stream: add `StreamExt::collect()` (#2109)Carl Lerche
2020-01-11stream: add `StreamExt::chain` (#2093)Carl Lerche
2020-01-11stream: add stream::once (#2094)Carl Lerche
2020-01-11stream: add `empty()` and `pending()` (#2092)Carl Lerche
2020-01-11stream: add `StreamExt::merge` (#2091)Carl Lerche
2020-01-09stream: add `StreamExt::fuse` (#2085)Carl Lerche
2020-01-08rt: fix threaded scheduler shutdown deadlock (#2074)Carl Lerche
2020-01-06Fix basic_scheduler deadlock when waking during drop (#2062)Sean McArthur
2020-01-06task: add ways to run a `LocalSet` from within a rt context (#1971)Eliza Weisman
2020-01-06process: deprecate Child stdio accessors in favor of pub fields (#2014)Ivan Petkov
2020-01-06chore: use just std instead of ::std in paths (#2049)Linus Färnstrand
2020-01-06time: advance frozen time in `park_timeout` (#2059)Carl Lerche
2020-01-03sync: add RwLock (#1699)João Oliveira
2019-12-22rt: fix storing Runtime in thread-local (#2011)Carl Lerche
2019-12-21sync: impl `Stream` for broadcast::Receiver (#2012)Bhargav
2019-12-21rt: fix spawn_blocking from spawn_blocking (#2006)Carl Lerche
2019-12-21dns: provide `lookup_host` function (#1870)David Barsky
2019-12-20chore: formatting, docs and clippy (#2000)Artem Vorotnikov
2019-12-18stream: add `next` and `map` utility fn (#1962)Artem Vorotnikov
2019-12-18rt: add configuration for core threads and max threads (#1977)Douman
2019-12-18sync: add broadcast channel (#1943)Carl Lerche
2019-12-17sync: add Semaphore (#1973)Michael P. Jung
2019-12-17sync: print MutexGuard inner value for debugging (#1961)yim7
2019-12-17rt: avoid dropping a task in calls to wake() (#1972)Carl Lerche
2019-12-13time: stream throttle (#1949)Artem Vorotnikov
2019-12-13chore: remove benches and fix/work around clippy lints (#1952)Artem Vorotnikov
2019-12-10Add Mutex::try_lock and (Unbounded)Receiver::try_recv (#1939)Michael P. Jung
2019-12-06sync: fix Mutex when lock future dropped before complete (#1902)Michael P. Jung
2019-12-03Add unit tests for tokio::File::AsRaw{Fd,Handle} for Unix and Windows. (#1890)Xinkai Chen
2019-12-01blocking: fix `spawn_blocking` after shutdown (#1875)Carl Lerche
2019-11-30process: rewrite and simplify the issue_42 test (#1871)Ivan Petkov
2019-11-29rt: fix `basic_scheduler` notification bug (#1861)Carl Lerche
2019-11-26task: add `LocalSet` API for running `!Send` futures (#1733)Eliza Weisman
2019-11-26fs: impl AsRawFd / AsRawHandle for File (#1827)Carl Lerche
2019-11-25doc: add more doc_cfg annotations (#1821)Carl Lerche
2019-11-23docs: improve tokio::io API documentation (#1815)Carl Lerche
2019-11-22process: do not kill spawned processes on drop (#1814)Ivan Petkov