mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-02 20:37:39 +03:00
122 lines
2.8 KiB
TOML
122 lines
2.8 KiB
TOML
[package]
|
|
name = "ntex"
|
|
version = "2.12.4"
|
|
authors = ["ntex contributors <team@ntex.rs>"]
|
|
description = "Framework for composable network services"
|
|
readme = "README.md"
|
|
keywords = ["ntex", "networking", "framework", "async", "futures"]
|
|
repository = "https://github.com/ntex-rs/ntex"
|
|
documentation = "https://docs.rs/ntex/"
|
|
categories = [
|
|
"network-programming",
|
|
"asynchronous",
|
|
"web-programming::http-server",
|
|
"web-programming::websocket",
|
|
]
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
rust-version = "1.75"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["tokio", "openssl", "rustls", "compress", "cookie", "ws", "ntex-tls/rustls-ring"]
|
|
|
|
[lib]
|
|
name = "ntex"
|
|
path = "src/lib.rs"
|
|
|
|
[features]
|
|
default = ["ws"]
|
|
|
|
# openssl
|
|
openssl = ["tls-openssl", "ntex-tls/openssl"]
|
|
|
|
# rustls support
|
|
rustls = ["tls-rustls", "webpki-roots", "ntex-tls/rustls"]
|
|
|
|
# enable compressison support
|
|
compress = ["flate2"]
|
|
|
|
# enable cookie support
|
|
cookie = ["coo-kie", "coo-kie/percent-encode"]
|
|
|
|
# url support
|
|
url = ["url-pkg"]
|
|
|
|
# tokio runtime
|
|
tokio = ["ntex-net/tokio"]
|
|
|
|
# compio runtime
|
|
compio = ["ntex-net/compio"]
|
|
|
|
# neon runtime
|
|
neon = ["ntex-net/neon"]
|
|
|
|
# neon runtime
|
|
neon-uring = ["ntex-net/neon", "ntex-net/io-uring"]
|
|
|
|
# websocket support
|
|
ws = ["dep:sha-1"]
|
|
|
|
# disable [ntex::test] logging configuration
|
|
no-test-logging = []
|
|
|
|
[dependencies]
|
|
ntex-codec = "0.6"
|
|
ntex-http = "0.1.13"
|
|
ntex-router = "0.5"
|
|
ntex-service = "3.4"
|
|
ntex-macros = "0.1"
|
|
ntex-util = "2.8"
|
|
ntex-bytes = "0.1.27"
|
|
ntex-server = "2.7.3"
|
|
ntex-h2 = "1.8.6"
|
|
ntex-rt = "0.4.27"
|
|
ntex-io = "2.11"
|
|
ntex-net = "2.5.8"
|
|
ntex-tls = "2.3"
|
|
|
|
base64 = "0.22"
|
|
bitflags = "2"
|
|
bytes = "1"
|
|
log = "0.4"
|
|
pin-project-lite = "0.2"
|
|
regex = { version = "1.11", default-features = false, features = ["std"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
sha-1 = { version = "0.10", optional = true }
|
|
env_logger = { version = "0.11", default-features = false }
|
|
thiserror = "1"
|
|
nanorand = { version = "0.7", default-features = false, features = [
|
|
"std",
|
|
"wyrand",
|
|
] }
|
|
|
|
# http/web framework
|
|
httparse = "1.9"
|
|
httpdate = "1.0"
|
|
encoding_rs = "0.8"
|
|
mime = "0.3"
|
|
percent-encoding = "2.3"
|
|
serde_json = "1"
|
|
serde_urlencoded = "0.7"
|
|
url-pkg = { version = "2.5", package = "url", optional = true }
|
|
coo-kie = { version = "0.18", package = "cookie", optional = true }
|
|
|
|
# openssl
|
|
tls-openssl = { version = "0.10", package = "openssl", optional = true }
|
|
|
|
# rustls
|
|
tls-rustls = { version = "0.23", package = "rustls", optional = true, default-features = false }
|
|
webpki-roots = { version = "0.26", optional = true }
|
|
|
|
# compression
|
|
flate2 = { version = "1.0", optional = true }
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8"
|
|
time = "0.3"
|
|
oneshot = "0.1"
|
|
futures-util = "0.3"
|
|
tls-openssl = { version = "0.10", package = "openssl" }
|
|
tls-rustls = { version = "0.23", package = "rustls", features = ["ring", "std"], default-features = false }
|
|
rustls-pemfile = "2"
|
|
webpki-roots = "0.26"
|