aboutsummaryrefslogtreecommitdiff
path: root/core/src/async_runtime/io.rs
blob: 161c25815c952d6acd6f2a003ef03596b571f902 (plain)
1
2
3
4
5
6
7
8
9
#[cfg(feature = "smol")]
pub use smol::io::{
    split, AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadHalf, WriteHalf,
};

#[cfg(feature = "tokio")]
pub use tokio::io::{
    split, AsyncRead, AsyncReadExt, AsyncWrite, AsyncWriteExt, ReadHalf, WriteHalf,
};