ticked_async_executor 0.4.0

Local executor that runs woken async tasks when it is ticked
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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",
]