diff --git a/ntex-net/CHANGES.md b/ntex-net/CHANGES.md index 18d70d3a..800ff027 100644 --- a/ntex-net/CHANGES.md +++ b/ntex-net/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [2.5.8] - 2025-03-25 + +* Update neon runtime + ## [2.5.7] - 2025-03-21 * Simplify neon poll impl diff --git a/ntex-net/Cargo.toml b/ntex-net/Cargo.toml index 6dc6af0f..a10b84be 100644 --- a/ntex-net/Cargo.toml +++ b/ntex-net/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ntex-net" -version = "2.5.7" +version = "2.5.8" authors = ["ntex contributors "] description = "ntexwork utils for ntex framework" keywords = ["network", "framework", "async", "futures"] @@ -27,8 +27,8 @@ compio = ["ntex-rt/compio", "ntex-compio"] # neon runtime neon = ["ntex-rt/neon", "ntex-neon", "slab", "socket2"] -polling = ["ntex-neon/polling", "dep:polling"] -io-uring = ["ntex-neon/io-uring", "dep:io-uring"] +polling = ["ntex-neon/polling", "dep:polling", "socket2"] +io-uring = ["ntex-neon/io-uring", "dep:io-uring", "socket2"] [dependencies] ntex-service = "3.3" @@ -40,14 +40,14 @@ ntex-util = "2.5" ntex-tokio = { version = "0.5.3", optional = true } ntex-compio = { version = "0.2.4", optional = true } -ntex-neon = { version = "0.1.7", optional = true } +ntex-neon = { version = "0.1.10", optional = true } bitflags = { workspace = true } cfg-if = { workspace = true } log = { workspace = true } libc = { workspace = true } slab = { workspace = true, optional = true } -socket2 = { workspace = true, optional = true } +socket2 = { workspace = true, optional = true, features = ["all"] } thiserror = { workspace = true } # Linux specific dependencies diff --git a/ntex/Cargo.toml b/ntex/Cargo.toml index 5cd86a12..301d239e 100644 --- a/ntex/Cargo.toml +++ b/ntex/Cargo.toml @@ -72,7 +72,7 @@ ntex-server = "2.7" ntex-h2 = "1.8.6" ntex-rt = "0.4.27" ntex-io = "2.11" -ntex-net = "2.5" +ntex-net = "2.5.8" ntex-tls = "2.3" base64 = "0.22"