iced-yoda/futures/src/backend/native.rs
2025-04-02 11:10:23 +02:00

9 lines
219 B
Rust

//! Backends that are only available in native platforms: Windows, macOS, or Linux.
#[cfg(feature = "tokio")]
pub mod tokio;
#[cfg(feature = "smol")]
pub mod smol;
#[cfg(feature = "thread-pool")]
pub mod thread_pool;