Add compio runtime support (#408)

This commit is contained in:
Nikolay Kim 2024-08-29 17:15:10 +05:00 committed by GitHub
parent 7944f30f56
commit 4924ecf472
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 44 additions and 13 deletions

View file

@ -6,9 +6,27 @@ pub use ntex_tokio::{from_tcp_stream, tcp_connect, tcp_connect_in};
#[cfg(all(unix, feature = "tokio"))]
pub use ntex_tokio::{from_unix_stream, unix_connect, unix_connect_in};
#[cfg(all(
feature = "compio",
not(feature = "tokio"),
not(feature = "async-std"),
not(feature = "glommio")
))]
pub use ntex_compio::{from_tcp_stream, tcp_connect, tcp_connect_in};
#[cfg(all(
unix,
feature = "compio",
not(feature = "tokio"),
not(feature = "async-std"),
not(feature = "glommio")
))]
pub use ntex_compio::{from_unix_stream, unix_connect, unix_connect_in};
#[cfg(all(
feature = "async-std",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "glommio")
))]
pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
@ -17,6 +35,7 @@ pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
unix,
feature = "async-std",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "glommio")
))]
pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in};
@ -24,6 +43,7 @@ pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in};
#[cfg(all(
feature = "glommio",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "async-std")
))]
pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in};
@ -32,12 +52,14 @@ pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in};
unix,
feature = "glommio",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "async-std")
))]
pub use ntex_glommio::{from_unix_stream, unix_connect, unix_connect_in};
#[cfg(all(
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "async-std"),
not(feature = "glommio")
))]
@ -107,6 +129,7 @@ mod no_rt {
#[cfg(all(
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "async-std"),
not(feature = "glommio")
))]