Fix glommio compat feature #327

This commit is contained in:
Nikolay Kim 2024-03-30 08:48:03 +01:00 committed by GitHub
parent baca449ba4
commit f8d03f1c8e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 6 additions and 2 deletions

View file

@ -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

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-net"
version = "1.0.1"
version = "1.0.2"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntexwork utils for ntex framework"
keywords = ["network", "framework", "async", "futures"]

View file

@ -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"),