summaryrefslogtreecommitdiffstats
path: root/tokio-test
AgeCommit message (Collapse)Author
2019-08-28prepare v0.2.0-alpha.3 release (#1505)Carl Lerche
2019-08-20chore: bump to newer nightly (#1485)Taiki Endo
2019-08-20timer: introduce delay function shortcut (#1440)Jakub Beránek
This commit adds a simple delay shortcut to avoid writing Delay::new everywhere and removes usages of Delay::new.
2019-08-18docs: fix all rustdoc warnings (#1474)Ivan Petkov
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-15runtime: refactor thread-local setters (#1449)Douman
2019-08-13test: add a block_on function to tokio-test (#1431)Geoff Shannon
2019-08-10chore: update futures-preview to 0.3.0-alpha.18 (#1427)Taiki Endo
2019-08-11chore: apply unreachable_pub and missing_debug_implementations to all crates ↵Taiki Endo
(#1424)
2019-08-10chore: change default lint level to warning and deny warnings in CI (#1416)Taiki Endo
2019-08-08chore: prepare for v0.2.0-alpha.1 release (#1410)Lucio Franco
2019-08-07chore: enable full CI run (#1399)Carl Lerche
* update all tests * fix doc examples * misc API tweaks
2019-08-07Remove git dep and add macro examples (#1404)Lucio Franco
Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
2019-08-06sync: polish and update API doc examples (#1398)Carl Lerche
- Remove `poll_*` fns from some of the sync types. - Move `AtomicWaker` and `Lock` to the root of the `sync` crate.
2019-07-26ci: enable clippy lints (#1335)Taiki Endo
2019-07-15io: Minor adjustments to tokio-test IO (#1306)Sean McArthur
This also re-exports `bytes::{Buf, BufMut}` from `tokio-io`.
2019-07-15chore: use ready macro from `futures-core` (#1300)Gurwinder Singh
2019-07-12tokio-test: add tokio_test::io mock builderSean McArthur
2019-06-30timer: finish updating timer (#1222)Carl Lerche
* timer: restructure feature flags * update timer tests * Add `async-traits` to CI This also disables a buggy `threadpool` test. This test should be fixed in the future. Refs #1225
2019-06-27chore: format code and enable rustfmt CI task (#1212)Carl Lerche
2019-06-26test: get `cargo test --tests` working (#1205)Carl Lerche
Broken tests are disabled
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-14Update Tokio to Rust 2018 (#1082)Carl Lerche
2019-05-03test: re-export macro dependencies (#1077)Carl Lerche
Callers may not always have `futures` available at the root of the crate. Re-exporting dependencies makes them available to the macro at a deterministic location.
2019-04-24chore: remember to remove path deps on release (#1057)Carl Lerche
2019-04-23Introduce `tokio-test` crate (#1030)Lucio Franco