Update neon runtime (#540)

This commit is contained in:
Nikolay Kim 2025-03-25 12:40:42 +01:00 committed by GitHub
parent e903e65e27
commit 0d3f1293c9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 6 deletions

View file

@ -1,5 +1,9 @@
# Changes
## [2.5.8] - 2025-03-25
* Update neon runtime
## [2.5.7] - 2025-03-21
* Simplify neon poll impl

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-net"
version = "2.5.7"
version = "2.5.8"
authors = ["ntex contributors <team@ntex.rs>"]
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

View file

@ -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"