ntex/ntex-server/Cargo.toml
2025-03-28 21:06:11 +01:00

41 lines
1 KiB
TOML

[package]
name = "ntex-server"
version = "2.7.4"
authors = ["ntex contributors <team@ntex.rs>"]
description = "Server for ntex framework"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-server/"
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
name = "ntex_server"
path = "src/lib.rs"
[dependencies]
ntex-bytes = "0.1"
ntex-net = "2"
ntex-service = "3.4"
ntex-rt = "0.4"
ntex-util = "2.8"
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"
ntex-macros = "0.1.3"
[target.'cfg(target_family = "unix")'.dependencies]
signal-hook = { version = "0.3", features=["iterator"] }
[target.'cfg(target_family = "windows")'.dependencies]
ctrlc = "3.4"