Skip to content

Commit

Permalink
Fix glommio compat feature #327
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 authored Mar 30, 2024
1 parent baca449 commit f8d03f1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ntex-net/CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ntex-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ntex-net"
version = "1.0.1"
version = "1.0.2"
authors = ["ntex contributors <[email protected]>"]
description = "ntexwork utils for ntex framework"
keywords = ["network", "framework", "async", "futures"]
Expand Down
2 changes: 1 addition & 1 deletion ntex-net/src/compat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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"),
Expand Down

0 comments on commit f8d03f1

Please sign in to comment.