From f8d03f1c8efd71252cf451832bfe1538893f3d0b Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Sat, 30 Mar 2024 08:48:03 +0100 Subject: [PATCH] Fix glommio compat feature #327 --- ntex-net/CHANGES.md | 4 ++++ ntex-net/Cargo.toml | 2 +- ntex-net/src/compat.rs | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ntex-net/CHANGES.md b/ntex-net/CHANGES.md index 42a2622b..20c42c07 100644 --- a/ntex-net/CHANGES.md +++ b/ntex-net/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [1.0.2] - 2024-03-30 + +* Fix glommio compat feature #327 + ## [1.0.1] - 2024-03-29 * Add Connect::map_addr() helper method diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index 90311b7f..8658325c 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-net" -version = "1.0.1" +version = "1.0.2" authors = ["ntex contributors "] description = "ntexwork utils for ntex framework" keywords = ["network", "framework", "async", "futures"] diff --git a/ntex-net/src/compat.rs b/ntex-net/src/compat.rs index e2def1ba..74ae15d1 100644 --- a/ntex-net/src/compat.rs +++ b/ntex-net/src/compat.rs @@ -34,7 +34,7 @@ pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in}; not(feature = "tokio"), not(feature = "async-std") ))] -pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in}; +pub use ntex_glommio::{from_unix_stream, unix_connect, unix_connect_in}; #[cfg(all( not(feature = "tokio"),