switchy_async 0.2.0

Switchy Async runtime package
Documentation
//! Tokio runtime implementation.
//!
//! This module provides the Tokio-based async runtime implementation, including
//! task spawning, runtime management, and I/O utilities.

pub mod runtime;
pub mod task;

#[cfg(feature = "io")]
pub mod io;
#[cfg(feature = "process")]
pub mod process;
#[cfg(feature = "sync")]
pub mod sync;
#[cfg(feature = "time")]
pub mod time;
#[cfg(feature = "util")]
pub mod util;

#[cfg(feature = "macros")]
pub use tokio::select;

#[cfg(feature = "macros")]
pub use tokio::test;

#[cfg(feature = "macros")]
pub use tokio::main;

#[cfg(feature = "macros")]
pub use tokio::join;

#[cfg(feature = "macros")]
pub use tokio::try_join;