ntex/ntex-rt/Cargo.toml
2025-03-28 08:51:44 +01:00

45 lines
1,020 B
TOML

[package]
name = "ntex-rt"
version = "0.4.29"
authors = ["ntex contributors <team@ntex.rs>"]
description = "ntex runtime"
keywords = ["network", "framework", "async", "futures"]
homepage = "https://ntex.rs"
repository = "https://github.com/ntex-rs/ntex.git"
documentation = "https://docs.rs/ntex-rt/"
categories = ["network-programming", "asynchronous"]
license = "MIT OR Apache-2.0"
build = "build.rs"
edition = "2021"
rust-version = "1.75"
[lib]
name = "ntex_rt"
path = "src/lib.rs"
[features]
default = []
# tokio support
tokio = ["tok-io"]
# compio support
compio = ["compio-driver", "compio-runtime"]
# neon runtime
neon = ["ntex-neon"]
[dependencies]
async-channel = "2"
futures-timer = "3.0"
oneshot = "0.1"
log = "0.4"
compio-driver = { version = "0.6", optional = true }
compio-runtime = { version = "0.6", optional = true }
tok-io = { version = "1", package = "tokio", default-features = false, features = [
"rt",
"net",
], optional = true }
ntex-neon = { version = "0.1.14", optional = true }