This commit is contained in:
Nikolay Kim 2025-03-11 01:34:12 +05:00
parent 3954fddf08
commit 4833f8dc17
13 changed files with 729 additions and 45 deletions

View file

@ -17,6 +17,17 @@ pub use crate::rt_polling::{
unix_connect_in,
};
#[cfg(all(
feature = "neon-uring",
not(feature = "neon"),
not(feature = "tokio"),
not(feature = "compio")
))]
pub use crate::rt_uring::{
from_tcp_stream, from_unix_stream, tcp_connect, tcp_connect_in, unix_connect,
unix_connect_in,
};
#[cfg(all(
feature = "compio",
not(feature = "tokio"),
@ -104,5 +115,10 @@ mod no_rt {
}
}
#[cfg(all(not(feature = "tokio"), not(feature = "compio"), not(feature = "neon")))]
#[cfg(all(
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "neon"),
not(feature = "neon-uring")
))]
pub use no_rt::*;