default spawn

This commit is contained in:
Nikolay Kim 2021-12-29 00:10:37 +06:00
parent 56ed50c6e8
commit 7a54d61376
3 changed files with 22 additions and 1 deletions

View file

@ -42,7 +42,7 @@ tok-io = { version = "1", package = "tokio", default-features = false, optional
async_std = { version = "1", package = "async-std", optional = true }
[dev-dependencies]
ntex = "0.5.0-b.2"
ntex = "0.5.0-b.5"
futures = "0.3"
rand = "0.8"
env_logger = "0.9"

View file

@ -172,6 +172,14 @@ pub mod rt {
#[cfg(all(not(feature = "tokio"), feature = "async-std"))]
pub use crate::asyncstd_rt::*;
#[cfg(all(not(feature = "tokio"), not(feature = "async-std")))]
pub fn spawn<F>(_: F) -> std::pin::Pin<Box<dyn std::future::Future<Output = F::Output>>>
where
F: std::future::Future + 'static,
{
unimplemented!()
}
}
#[cfg(test)]