mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 04:47:39 +03:00
Update neon runtime (#540)
This commit is contained in:
parent
e903e65e27
commit
0d3f1293c9
3 changed files with 10 additions and 6 deletions
|
@ -1,5 +1,9 @@
|
||||||
# Changes
|
# Changes
|
||||||
|
|
||||||
|
## [2.5.8] - 2025-03-25
|
||||||
|
|
||||||
|
* Update neon runtime
|
||||||
|
|
||||||
## [2.5.7] - 2025-03-21
|
## [2.5.7] - 2025-03-21
|
||||||
|
|
||||||
* Simplify neon poll impl
|
* Simplify neon poll impl
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ntex-net"
|
name = "ntex-net"
|
||||||
version = "2.5.7"
|
version = "2.5.8"
|
||||||
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"]
|
||||||
|
@ -27,8 +27,8 @@ compio = ["ntex-rt/compio", "ntex-compio"]
|
||||||
# neon runtime
|
# neon runtime
|
||||||
neon = ["ntex-rt/neon", "ntex-neon", "slab", "socket2"]
|
neon = ["ntex-rt/neon", "ntex-neon", "slab", "socket2"]
|
||||||
|
|
||||||
polling = ["ntex-neon/polling", "dep:polling"]
|
polling = ["ntex-neon/polling", "dep:polling", "socket2"]
|
||||||
io-uring = ["ntex-neon/io-uring", "dep:io-uring"]
|
io-uring = ["ntex-neon/io-uring", "dep:io-uring", "socket2"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ntex-service = "3.3"
|
ntex-service = "3.3"
|
||||||
|
@ -40,14 +40,14 @@ ntex-util = "2.5"
|
||||||
|
|
||||||
ntex-tokio = { version = "0.5.3", optional = true }
|
ntex-tokio = { version = "0.5.3", optional = true }
|
||||||
ntex-compio = { version = "0.2.4", 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 }
|
bitflags = { workspace = true }
|
||||||
cfg-if = { workspace = true }
|
cfg-if = { workspace = true }
|
||||||
log = { workspace = true }
|
log = { workspace = true }
|
||||||
libc = { workspace = true }
|
libc = { workspace = true }
|
||||||
slab = { workspace = true, optional = true }
|
slab = { workspace = true, optional = true }
|
||||||
socket2 = { workspace = true, optional = true }
|
socket2 = { workspace = true, optional = true, features = ["all"] }
|
||||||
thiserror = { workspace = true }
|
thiserror = { workspace = true }
|
||||||
|
|
||||||
# Linux specific dependencies
|
# Linux specific dependencies
|
||||||
|
|
|
@ -72,7 +72,7 @@ ntex-server = "2.7"
|
||||||
ntex-h2 = "1.8.6"
|
ntex-h2 = "1.8.6"
|
||||||
ntex-rt = "0.4.27"
|
ntex-rt = "0.4.27"
|
||||||
ntex-io = "2.11"
|
ntex-io = "2.11"
|
||||||
ntex-net = "2.5"
|
ntex-net = "2.5.8"
|
||||||
ntex-tls = "2.3"
|
ntex-tls = "2.3"
|
||||||
|
|
||||||
base64 = "0.22"
|
base64 = "0.22"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue