12 lines
269 B
Rust
12 lines
269 B
Rust
//! 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;
|