[package]
edition = "2021"
rust-version = "1.80"
name = "moduvex-runtime"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Custom async runtime for the Moduvex framework — epoll/kqueue/IOCP, hybrid threading"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/Moduvex/moduvex"
[lib]
name = "moduvex_runtime"
path = "src/lib.rs"
[[test]]
name = "stress_channel"
path = "tests/stress_channel.rs"
[[test]]
name = "stress_executor"
path = "tests/stress_executor.rs"
[[bench]]
name = "channel_benchmarks"
path = "benches/channel_benchmarks.rs"
harness = false
[[bench]]
name = "executor_benchmarks"
path = "benches/executor_benchmarks.rs"
harness = false
[dependencies]
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61"
features = [
"Win32_Foundation",
"Win32_System_IO",
"Win32_Networking_WinSock",
"Win32_System_Threading",
"Win32_Security",
]