tokio_read_write_traits/lib.rs
1//! Re-export tokio async traits to be able to write code that ports
2//! between future `AsyncRead`/`AsyncWrite` to tokio without bringing
3//! in all of tokio.
4//!
5//! This crate is not maintained by the tokio team.
6pub use tokio::io::{AsyncRead as TokioAsyncRead, AsyncWrite as TokioAsyncWrite};