async-native-tls 0.3.3

Native TLS using futures
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "runtime-async-std")]
pub(crate) use async_std::io::{Read as AsyncRead, Write as AsyncWrite};

#[cfg(feature = "runtime-async-std")]
#[allow(unused_imports)]
pub(crate) use async_std::io::prelude::{ReadExt as AsyncReadExt, WriteExt as AsyncWriteExt};

#[cfg(feature = "runtime-tokio")]
pub(crate) use tokio::io::{AsyncRead, AsyncReadExt, AsyncWrite};