mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
Add compio runtime support (#408)
This commit is contained in:
parent
7944f30f56
commit
4924ecf472
4 changed files with 44 additions and 13 deletions
|
@ -1,5 +1,9 @@
|
|||
# Changes
|
||||
|
||||
## [2.1.0] - 2024-08-29
|
||||
|
||||
* Add `compio` runtime support
|
||||
|
||||
## [2.0.0] - 2024-05-28
|
||||
|
||||
* Use async fn for Service::ready() and Service::shutdown()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "ntex-net"
|
||||
version = "2.0.0"
|
||||
version = "2.1.0"
|
||||
authors = ["ntex contributors <team@ntex.rs>"]
|
||||
description = "ntexwork utils for ntex framework"
|
||||
keywords = ["network", "framework", "async", "futures"]
|
||||
|
@ -21,6 +21,9 @@ default = []
|
|||
# tokio runtime
|
||||
tokio = ["ntex-rt/tokio", "ntex-tokio"]
|
||||
|
||||
# compio runtime
|
||||
compio = ["ntex-rt/compio", "ntex-compio"]
|
||||
|
||||
# glommio runtime
|
||||
glommio = ["ntex-rt/glommio", "ntex-glommio"]
|
||||
|
||||
|
@ -28,19 +31,20 @@ glommio = ["ntex-rt/glommio", "ntex-glommio"]
|
|||
async-std = ["ntex-rt/async-std", "ntex-async-std"]
|
||||
|
||||
[dependencies]
|
||||
ntex-service = "3.0"
|
||||
ntex-service = "3"
|
||||
ntex-bytes = "0.1"
|
||||
ntex-http = "0.1"
|
||||
ntex-io = "2.0"
|
||||
ntex-rt = "0.4.11"
|
||||
ntex-util = "2.0"
|
||||
ntex-io = "2.3"
|
||||
ntex-rt = "0.4.14"
|
||||
ntex-util = "2"
|
||||
|
||||
ntex-tokio = { version = "0.5.0", optional = true }
|
||||
ntex-glommio = { version = "0.5.0", optional = true }
|
||||
ntex-async-std = { version = "0.5.0", optional = true }
|
||||
ntex-tokio = { version = "0.5", optional = true }
|
||||
ntex-compio = { version = "0.1", optional = true }
|
||||
ntex-glommio = { version = "0.5", optional = true }
|
||||
ntex-async-std = { version = "0.5", optional = true }
|
||||
|
||||
log = "0.4"
|
||||
thiserror = "1.0"
|
||||
thiserror = "1"
|
||||
|
||||
[dev-dependencies]
|
||||
env_logger = "0.11"
|
||||
|
|
|
@ -6,9 +6,27 @@ pub use ntex_tokio::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
|||
#[cfg(all(unix, feature = "tokio"))]
|
||||
pub use ntex_tokio::{from_unix_stream, unix_connect, unix_connect_in};
|
||||
|
||||
#[cfg(all(
|
||||
feature = "compio",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "async-std"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
pub use ntex_compio::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
||||
|
||||
#[cfg(all(
|
||||
unix,
|
||||
feature = "compio",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "async-std"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
pub use ntex_compio::{from_unix_stream, unix_connect, unix_connect_in};
|
||||
|
||||
#[cfg(all(
|
||||
feature = "async-std",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
||||
|
@ -17,6 +35,7 @@ pub use ntex_async_std::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
|||
unix,
|
||||
feature = "async-std",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in};
|
||||
|
@ -24,6 +43,7 @@ pub use ntex_async_std::{from_unix_stream, unix_connect, unix_connect_in};
|
|||
#[cfg(all(
|
||||
feature = "glommio",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "async-std")
|
||||
))]
|
||||
pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
||||
|
@ -32,12 +52,14 @@ pub use ntex_glommio::{from_tcp_stream, tcp_connect, tcp_connect_in};
|
|||
unix,
|
||||
feature = "glommio",
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "async-std")
|
||||
))]
|
||||
pub use ntex_glommio::{from_unix_stream, unix_connect, unix_connect_in};
|
||||
|
||||
#[cfg(all(
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "async-std"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
|
@ -107,6 +129,7 @@ mod no_rt {
|
|||
|
||||
#[cfg(all(
|
||||
not(feature = "tokio"),
|
||||
not(feature = "compio"),
|
||||
not(feature = "async-std"),
|
||||
not(feature = "glommio")
|
||||
))]
|
||||
|
|
|
@ -67,10 +67,10 @@ ntex-util = "2"
|
|||
ntex-bytes = "0.1.27"
|
||||
ntex-server = "2.3"
|
||||
ntex-h2 = "1.1"
|
||||
ntex-rt = "0.4.13"
|
||||
ntex-io = "2.2"
|
||||
ntex-net = "2.0"
|
||||
ntex-tls = "2.0"
|
||||
ntex-rt = "0.4.14"
|
||||
ntex-io = "2.3"
|
||||
ntex-net = "2.1"
|
||||
ntex-tls = "2.1"
|
||||
|
||||
base64 = "0.22"
|
||||
bitflags = "2"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue