n3_spawner/
lib.rs

1//! n3 task asynchronous task spawner facade.
2
3#![cfg_attr(docsrs, feature(doc_cfg))]
4
5#[cfg(feature = "futures-executor")]
6#[cfg_attr(docsrs, doc(cfg(feature = "futures-executor")))]
7mod futures_executor;
8
9#[cfg(feature = "futures-executor")]
10pub use futures_executor::*;
11
12#[cfg(feature = "futures-executor-local")]
13#[cfg_attr(docsrs, doc(cfg(feature = "futures-executor-local")))]
14mod futures_executor_local;
15
16#[cfg(feature = "futures-executor-local")]
17pub use futures_executor_local::*;