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