taskvisor 0.1.0

Event-driven task orchestration with restart, backoff, and user-defined subscribers
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 = "taskvisor"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Event-driven task orchestration with restart, backoff, and user-defined subscribers"
documentation = "https://docs.rs/taskvisor"
readme = "README.md"
keywords = [
    "async",
    "tasks",
    "supervisor",
    "backoff",
    "orchestration",
]
categories = [
    "asynchronous",
    "concurrency",
    "network-programming",
]
license = "Apache-2.0"
repository = "https://github.com/soltiHQ/taskvisor"

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

[features]
controller = []
default = []
logging = []

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

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

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

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

[dependencies.anyhow]
version = "1.0.100"

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

[dependencies.dashmap]
version = "6.1.0"

[dependencies.futures]
version = "0.3.31"

[dependencies.rand]
version = "0.9.2"

[dependencies.thiserror]
version = "2.0.16"

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

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