summaryrefslogtreecommitdiff
path: root/crates/tor-rtcompat/src/impls.rs
blob: 297b74b788c084a07168588af05a776ca94835c3 (plain)
1
2
3
4
5
6
7
8
9
//! Different implementations of a common async API for use in arti
//!
//! Currently only async_std and tokio are provided.

#[cfg(all(feature = "async-std"))]
pub(crate) mod async_std;

#[cfg(all(feature = "tokio"))]
pub(crate) mod tokio;