1
0
Fork 0
mirror of https://github.com/ntex-rs/ntex.git synced 2025-04-06 14:27:39 +03:00

Better worker availability handling ()

This commit is contained in:
Nikolay Kim 2025-03-28 08:51:44 +01:00 committed by GitHub
parent 8f2d5056c9
commit e9a1284151
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 86 additions and 48 deletions
ntex-server

View file

@ -1,6 +1,6 @@
[package]
name = "ntex-server"
version = "2.7.2"
version = "2.7.3"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Server for ntex framework"
keywords = ["network", "framework", "async", "futures"]
@ -22,13 +22,13 @@ ntex-service = "3.4"
ntex-rt = "0.4"
ntex-util = "2.8"
async-channel = "2"
async-broadcast = "0.7"
core_affinity = "0.8"
polling = "3.3"
log = "0.4"
socket2 = "0.5"
oneshot = { version = "0.1", default-features = false, features = ["async"] }
async-channel = { workspace = true }
atomic-waker = { workspace = true }
core_affinity = { workspace = true }
oneshot = { workspace = true }
polling = { workspace = true }
log = { workspace = true }
socket2 = { workspace = true }
[dev-dependencies]
ntex = "2"