mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 05:17:39 +03:00
default spawn
This commit is contained in:
parent
56ed50c6e8
commit
7a54d61376
3 changed files with 22 additions and 1 deletions
|
@ -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"
|
||||
|
|
|
@ -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)]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue