//! Platform-specific async runtime primitives for native and WASM targets.
//!//! Provides unified interfaces for `sleep` and `spawn` operations across different runtime environments.
#[cfg(feature ="native")]pubusetokio::time::sleep;#[cfg(feature ="wasm")]pubusewasmtimer::tokio::sleep;#[cfg(feature ="native")]pubusetokio::spawn;#[cfg(feature ="wasm")]pubusewasm_bindgen_futures::spawn_local as spawn;