summaryrefslogtreecommitdiffstats
path: root/futures/src/backend/native.rs
blob: 85af2c88affc40c57ee7d3a1943e52f30d4299fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
//! Backends that are only available in native platforms: Windows, macOS, or Linux.
#[cfg(feature = "tokio")]
pub mod tokio;

#[cfg(feature = "async-std")]
pub mod async_std;

#[cfg(feature = "smol")]
pub mod smol;

#[cfg(feature = "thread-pool")]
pub mod thread_pool;