summaryrefslogtreecommitdiffstats
path: root/tokio-macros
AgeCommit message (Collapse)Author
2019-08-29prepare v0.2.0-alpha.4 (#1509)Sean McArthur
2019-08-28prepare v0.2.0-alpha.3 release (#1505)Carl Lerche
2019-08-20chore: bump to newer nightly (#1485)Taiki Endo
2019-08-18docs: add docs.rs metadata to build with all features (#1471)Ivan Petkov
2019-08-17chore: prepare 0.2.0-alpha.2 release (#1465)Carl Lerche
2019-08-13macros: upgrade syn/quote (#1432)Douman
2019-08-11chore: apply unreachable_pub and missing_debug_implementations to all crates ↵Taiki Endo
(#1424)
2019-08-09macros: improve error messages (#1420)Taiki Endo
2019-08-10chore: change default lint level to warning and deny warnings in CI (#1416)Taiki Endo
2019-08-09macros: Error on function with arguments (#1419)Douman
2019-08-08chore: prepare for v0.2.0-alpha.1 release (#1410)Lucio Franco
2019-07-26ci: enable clippy lints (#1335)Taiki Endo
2019-07-22macros: detect double test attribute (#1336)Douman
2019-06-27sync: add async APIs to oneshot and mpsc (#1211)Carl Lerche
Adds: - oneshot::Sender::close - mpsc::Receiver::recv - mpsc::Sender::send Also renames `poll_next` to `poll_recv`. Refs: #1210
2019-06-27macros: allow configuring runtime used by main macro (#1185)Douman
2019-06-26Update tokio-udp to use std-future (#1199)Yin Guanhao
2019-06-25macros: re-export `main` macro from `tokio` (#1198)Carl Lerche
Includes minor fixes and a very basic example. Fixes #1183
2019-06-24Update Tokio to use `std::future`. (#1120)Carl Lerche
A first pass at updating Tokio to use `std::future`. Implementations of `Future` from the futures crate are updated to implement `Future` from std. Implementations of `Stream` are moved to a feature flag. This commits disables a number of crates that have not yet been updated.
2019-05-14Merge branch 'v0.1.x'Carl Lerche
2019-05-14Release tokio v0.1.20, tokio-timer v0.2.21, and remove async-await-preview ↵Carl Lerche
feature. (#1089) The `async-await-preview` feature is removed as 0.1 will no longer track Rust nightly. This also bumps: - tokio-timer (0.2.11).
2019-05-14Update Tokio to Rust 2018 (#1082)Carl Lerche
2019-04-30async-await: add `current_thread::Runtime::block_on_async` (#1072)Carl Lerche
This function is used by the Tokio macros introduced by #1058 but was omitted from the PR.
2019-04-25Async/await polish (#1058)Carl Lerche
A general refresh of Tokio's experimental async / await support.