taskvisor 0.0.1

Lightweight orchestrator/runner with task observers
Documentation
[package]
name = "taskvisor"
version = "0.0.1"
edition = "2024"

description = "Lightweight orchestrator/runner with task observers"
repository = "https://github.com/soltiHQ/taskvisor"
documentation = "https://docs.rs/taskvisor"
license-file = "LICENSE"
readme = "README.md"

categories = ["development-tools", "command-line-utilities"]
keywords = ["tasks", "orchestrator", "runner"]

[features]
default = []
logging = []
events = []

[dependencies]
tokio = { version = "1.47.1", features = ["rt-multi-thread", "macros", "time", "sync", "signal"] }
async-trait = "0.1.89"
tokio-util = "0.7.16"
thiserror = "2.0.16"
anyhow = "1.0.100"

[[example]]
name = "demo"
path = "examples/demo.rs"
required-features = ["logging"]