ntex-rs/ntex

Wrong feature gate in ntex/ntex-net/src/compat.rs

hatoo opened this issue · 1 comments

hatoo commented

#[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.

ntex-net 1.0.2 released with fix