1 2 3 4 5 6 7 8 9 10 11 12 13
//! Runtime integration hooks //! //! This module provides integration with async runtimes like Tokio, //! async-std, and smol, enabling automatic tracking of spawned tasks. #[cfg(feature = "tokio")] pub mod tokio; #[cfg(feature = "async-std-runtime")] pub mod async_std; #[cfg(feature = "smol-runtime")] pub mod smol;