async_inspect/runtime/
mod.rs

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