[package]
edition = "2021"
name = "clockworker"
version = "0.2.2"
authors = ["Nikhil Garg <nikhilgarg28@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A single-threaded async executor with EEVDF-based fair scheduling and pluggable task schedulers"
readme = "README.md"
keywords = [
"async",
"executor",
"scheduler",
"runtime",
"tokio",
]
categories = [
"asynchronous",
"concurrency",
]
license = "Apache-2.0"
repository = "https://github.com/nikhilgarg28/clockworker"
[lib]
name = "clockworker"
path = "src/lib.rs"
[[bench]]
name = "overhead"
path = "benches/overhead.rs"
harness = false
[[bench]]
name = "overhead_profile"
path = "benches/overhead_profile.rs"
harness = false
[[bench]]
name = "pingpong"
path = "benches/pingpong.rs"
harness = false
[[bench]]
name = "priority"
path = "benches/priority.rs"
harness = false
[[bench]]
name = "tail"
path = "benches/tail.rs"
harness = false
[[bench]]
name = "tcp"
path = "benches/tcp.rs"
harness = false
[[bench]]
name = "utils"
path = "benches/utils.rs"
[dependencies.futures]
version = "0.3"
[dependencies.futures-util]
version = "0.3"
[dependencies.slab]
version = "0.4"
[dependencies.static_assertions]
version = "1.1"
[dev-dependencies.core_affinity]
version = "0.8"
[dev-dependencies.flume]
version = "0.11"
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.monoio]
version = "0.2"
[dev-dependencies.rand]
version = "0.8"
features = ["std"]
[dev-dependencies.smol]
version = "2.0"
[dev-dependencies.tabled]
version = "0.20"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"time",
"rt",
"macros",
]
[profile.release]
lto = "thin"
codegen-units = 1
debug = 2
[profile.samply]
debug = 2
inherits = "release"