crb_core_std/
task.rs

1//! This module provides a simple wrapper
2//! around the `tokio::task` module.
3
4pub use tokio::task::{JoinHandle, spawn_blocking};
5pub use tokio::{spawn, task::spawn_local};