mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Fix glommio compat feature #327
This commit is contained in:
parent
baca449ba4
commit
f8d03f1c8e
3 changed files with 6 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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"]
|
||||
|
|
|
@ -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"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue