[package] name = "ntex-rt" version = "0.4.27" authors = ["ntex contributors "] 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-core = "0.3" log = "0.4" oneshot = "0.1" 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", optional = true }