Drop glommio support (#511)

This commit is contained in:
Nikolay Kim 2025-03-09 18:19:34 +05:00 committed by GitHub
parent 4c1bc3249b
commit 59ffd17b91
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
19 changed files with 31 additions and 608 deletions

View file

@ -10,8 +10,7 @@ pub use ntex_tokio::{from_unix_stream, unix_connect, unix_connect_in};
feature = "default-rt",
not(feature = "tokio"),
not(feature = "async-std"),
not(feature = "compio"),
not(feature = "glommio")
not(feature = "compio")
))]
pub use crate::rt::{
from_tcp_stream, from_unix_stream, tcp_connect, tcp_connect_in, unix_connect,
@ -22,8 +21,7 @@ pub use crate::rt::{
feature = "compio",
not(feature = "tokio"),
not(feature = "async-std"),
not(feature = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
pub use ntex_compio::{from_tcp_stream, tcp_connect, tcp_connect_in};
@ -32,8 +30,7 @@ pub use ntex_compio::{from_tcp_stream, tcp_connect, tcp_connect_in};
feature = "compio",
not(feature = "tokio"),
not(feature = "async-std"),
not(feature = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
pub use ntex_compio::{from_unix_stream, unix_connect, unix_connect_in};
@ -41,8 +38,7 @@ pub use ntex_compio::{from_unix_stream, unix_connect, unix_connect_in};
feature = "async-std",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
@ -51,36 +47,15 @@ pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
feature = "async-std",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
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 = "default-rt"),
not(feature = "async-std")
))]
pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in};
#[cfg(all(
unix,
feature = "glommio",
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "default-rt"),
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 = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
mod no_rt {
use ntex_io::Io;
@ -150,7 +125,6 @@ mod no_rt {
not(feature = "tokio"),
not(feature = "compio"),
not(feature = "async-std"),
not(feature = "default-rt"),
not(feature = "glommio")
not(feature = "default-rt")
))]
pub use no_rt::*;