[package]
edition = "2024"
name = "ticked_async_executor"
version = "0.4.0"
authors = ["coder137"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Local executor that runs woken async tasks when it is ticked"
readme = "README.md"
categories = [
"asynchronous",
"concurrency",
"game-development",
"simulation",
]
license = "Apache-2.0"
repository = "https://github.com/coder137/ticked-async-executor"
[features]
tick_event = []
timer_registration = []
[lib]
name = "ticked_async_executor"
path = "src/lib.rs"
[[example]]
name = "simple_with_tracy"
path = "examples/simple_with_tracy.rs"
[[example]]
name = "timer_registration_with_tracy"
path = "examples/timer_registration_with_tracy.rs"
required-features = ["timer_registration"]
[[test]]
name = "tokio_tests"
path = "tests/tokio_tests.rs"
[[bench]]
name = "benchmark"
path = "benches/benchmark.rs"
harness = false
[dependencies.async-task]
version = "4.7"
[dependencies.flume]
version = "0.12"
[dependencies.pin-project]
version = "1"
[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.ctrlc]
version = "3.5.2"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-subscriber]
version = "0.3"
[dev-dependencies.tracing-tracy]
version = "0.11.4"
features = [
"fibers",
"flush-on-exit",
]