add actix-rt::task

This commit is contained in:
fakeshadow 2021-01-03 13:51:46 +08:00
parent 147c4f4f2c
commit 243ac9c357
3 changed files with 7 additions and 2 deletions

View File

@ -1,7 +1,7 @@
# Changes
## Unreleased - 2021-xx-xx
* Add `task` mod with re-export of `tokio::task::{spawn_blocking, yield_nowm JoinHandle}`
## 2.0.0-beta.1 - 2020-12-28
### Added

View File

@ -18,4 +18,4 @@ path = "src/lib.rs"
[dependencies]
actix-macros = "0.1.0"
tokio = { version = "1", features = ["rt", "net", "signal", "sync", "time"] }
tokio = { version = "1", features = ["rt", "net", "parking_lot", "signal", "sync", "time"] }

View File

@ -63,3 +63,8 @@ pub mod time {
pub use tokio::time::{sleep, sleep_until, Sleep};
pub use tokio::time::{timeout, Timeout};
}
/// task management.
pub mod task {
pub use tokio::task::{spawn_blocking, yield_now, JoinHandle};
}