|
#[cfg(all( |
|
unix, |
|
feature = "glommio", |
|
not(feature = "tokio"), |
|
not(feature = "async-std") |
|
))] |
|
pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in}; |
It imports ntex_async_std
whereas glommio
is enabled.
This causes a compile error in my program.