karyon_core 0.5.0

Internal crate for Karyon library.
Documentation
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,
};