taskvisor 0.0.5

Event-driven task orchestration with restart, backoff, and user-defined subscribers
[dependencies.anyhow]
version = "1.0.100"

[dependencies.async-trait]
version = "0.1.89"

[dependencies.futures]
version = "0.3.31"

[dependencies.rand]
version = "0.10.0-rc.0"

[dependencies.thiserror]
version = "2.0.16"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "time", "sync", "signal"]
version = "1.47.1"

[dependencies.tokio-util]
version = "0.7.16"

[[example]]
name = "basic_one_shot"
path = "examples/basic_one_shot.rs"

[[example]]
name = "custom_subscriber"
path = "examples/custom_subscriber.rs"

[[example]]
name = "dynamic_add_remove"
path = "examples/dynamic_add_remove.rs"

[[example]]
name = "retry_with_backoff"
path = "examples/retry_with_backoff.rs"

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

[lib]
name = "taskvisor"
path = "src/lib.rs"

[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency", "development-tools"]
description = "Event-driven task orchestration with restart, backoff, and user-defined subscribers"
documentation = "https://docs.rs/taskvisor"
edition = "2024"
keywords = ["async", "tasks", "supervisor", "backoff", "orchestration"]
license = "Apache-2.0"
name = "taskvisor"
readme = "README.md"
repository = "https://github.com/soltiHQ/taskvisor"
version = "0.0.5"

[package.metadata.docs.rs]
features = ["logging", "events"]