async-inspect 0.2.0

X-ray vision for async Rust - inspect and debug async state machines
Documentation
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;