diff --git a/ntex-net/CHANGES.md b/ntex-net/CHANGES.md index ae5d657f..1884305d 100644 --- a/ntex-net/CHANGES.md +++ b/ntex-net/CHANGES.md @@ -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() diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index a026af03..059bd7e4 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-net" -version = "2.0.0" +version = "2.1.0" authors = ["ntex contributors "] 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" diff --git a/ntex-net/src/compat.rs b/ntex-net/src/compat.rs index 74ae15d1..ad320882 100644 --- a/ntex-net/src/compat.rs +++ b/ntex-net/src/compat.rs @@ -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") ))] diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index f94f1455..accddd34 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -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"