Skip to main content

wreq_rt/
rt.rs

1//! Runtime components — executor and timer implementations.
2//!
3//! Selects between tokio (`tokio-rt` feature) and compio (`compio` feature)
4//! runtime backends.
5
6#[cfg(feature = "compio-rt")]
7pub mod compio;
8
9#[cfg(feature = "tokio-rt")]
10pub mod tokio;