blob: f5dacae9b478fe807af36f3dc2cd13ca43913ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//! Different implementations of a common async API for use in arti
//!
//! Currently only async_std and tokio are provided.
#[cfg(feature = "async-std")]
pub(crate) mod async_std;
#[cfg(feature = "tokio")]
pub(crate) mod tokio;
#[cfg(feature = "rustls")]
pub(crate) mod rustls;
#[cfg(feature = "native-tls")]
pub(crate) mod native_tls;
|