taskvisor 0.1.2

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"
rust-version = "1.85"
name = "taskvisor"
version = "0.1.2"
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 = ["dashmap"]
default = []
logging = []

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

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

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

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

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

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

[[example]]
name = "pipeline"
path = "examples/pipeline.rs"
required-features = ["controller"]

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

[[bench]]
name = "controller"
path = "benches/controller.rs"
harness = false
required-features = ["controller"]

[[bench]]
name = "dynamic"
path = "benches/dynamic.rs"
harness = false

[[bench]]
name = "fanout"
path = "benches/fanout.rs"
harness = false

[[bench]]
name = "lifecycle"
path = "benches/lifecycle.rs"
harness = false

[[bench]]
name = "throughput"
path = "benches/throughput.rs"
harness = false

[dependencies.dashmap]
version = "6.1.0"
optional = true

[dependencies.fastrand]
version = "2.3.0"

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

[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]