tor-rtcompat 0.8.0

Compatibility layer for asynchronous runtimes, used by Tor
Documentation
//! 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;

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

#[cfg(all(feature = "native-tls"))]
pub(crate) mod native_tls;