[package]
edition = "2024"
name = "yot_run"
version = "0.1.2"
authors = ["Ayotunde <yotstack@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A work-stealing, multi-threaded async executor with non-blocking scheduling."
homepage = "https://github.com/Joel-Ajayi/yot-run"
documentation = "https://docs.rs/yot_run/"
readme = "README.md"
keywords = [
"async",
"executor",
"work-stealing",
"futures",
"reactor",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Joel-Ajayi/yot-run"
[lib]
name = "yot_run"
path = "src/lib.rs"
[dependencies.crossbeam-deque]
version = "0.8.6"
[dependencies.crossbeam-queue]
version = "0.3"
[dependencies.crossbeam-utils]
version = "0.8.21"
[dependencies.metrics]
version = "0.24.3"
[dependencies.metrics-exporter-prometheus]
version = "0.18.1"
[dependencies.mio]
version = "1.1.1"
features = [
"os-poll",
"net",
]
[dependencies.rand]
version = "0.9.2"
[dependencies.yot_run_macros]
version = "0.1.0"