mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-03 21:07:39 +03:00
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "ntex-runtime"
|
|
version = "0.1.0"
|
|
description = "Async runtime for ntex"
|
|
categories = ["asynchronous"]
|
|
keywords = ["async", "runtime"]
|
|
edition = { workspace = true }
|
|
authors = { workspace = true }
|
|
readme = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
default-target = "x86_64-unknown-linux-gnu"
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
targets = [
|
|
"x86_64-pc-windows-gnu",
|
|
"x86_64-unknown-linux-gnu",
|
|
"x86_64-apple-darwin",
|
|
"aarch64-apple-ios",
|
|
"aarch64-linux-android",
|
|
"x86_64-unknown-dragonfly",
|
|
"x86_64-unknown-freebsd",
|
|
"x86_64-unknown-illumos",
|
|
"x86_64-unknown-netbsd",
|
|
"x86_64-unknown-openbsd",
|
|
]
|
|
|
|
[dependencies]
|
|
ntex-iodriver = "0.1"
|
|
|
|
async-task = { workspace = true }
|
|
cfg-if = { workspace = true }
|
|
crossbeam-queue = { workspace = true }
|
|
scoped-tls = { workspace = true }
|
|
fxhash = { workspace = true }
|
|
log = { workspace = true }
|
|
socket2 = { workspace = true, features = ["all"] }
|
|
|
|
# Windows specific dependencies
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = [
|
|
"Win32_Foundation",
|
|
"Win32_Networking_WinSock",
|
|
"Win32_System_IO",
|
|
] }
|
|
|
|
# Unix specific dependencies
|
|
[target.'cfg(unix)'.dependencies]
|
|
libc = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dev-dependencies]
|
|
windows-sys = { workspace = true, features = ["Win32_UI_WindowsAndMessaging"] }
|
|
|
|
[features]
|
|
io-uring = ["ntex-iodriver/io-uring"]
|
|
polling = ["ntex-iodriver/polling"]
|