mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
40 lines
1,020 B
TOML
40 lines
1,020 B
TOML
[package]
|
|
name = "ntex-server"
|
|
version = "1.0.5"
|
|
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.24"
|
|
ntex-net = "1.0"
|
|
ntex-service = "2.0"
|
|
ntex-rt = "0.4.12"
|
|
ntex-util = "1.0"
|
|
|
|
async-channel = "2.2"
|
|
async-broadcast = "0.7"
|
|
polling = "3.3"
|
|
log = "0.4"
|
|
socket2 = "0.5"
|
|
oneshot = { version = "0.1", default-features = false, features = ["async"] }
|
|
|
|
[dev-dependencies]
|
|
ntex = { version = "1", features = ["tokio"] }
|
|
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"
|