task-supervisor 0.3.7

Tokio tasks Supervisor
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 = "2021"
rust-version = "1.81"
name = "task-supervisor"
version = "0.3.7"
authors = ["akhercha <adel@pragma.build>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tokio tasks Supervisor"
readme = "README.md"
keywords = [
    "tasks",
    "tokio",
    "supervisor",
]
categories = ["asynchronous"]
license = "MIT"
repository = "https://github.com/akhercha/task-supervisor"

[features]
with_tracing = ["dep:tracing"]

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

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

[[test]]
name = "mod"
path = "tests/mod.rs"

[[test]]
name = "test_configuration"
path = "tests/test_configuration.rs"

[[test]]
name = "test_handle"
path = "tests/test_handle.rs"

[[test]]
name = "test_supervisor"
path = "tests/test_supervisor.rs"

[[test]]
name = "test_tasks"
path = "tests/test_tasks.rs"

[[test]]
name = "test_threshold"
path = "tests/test_threshold.rs"

[[test]]
name = "test_wait"
path = "tests/test_wait.rs"

[dependencies.anyhow]
version = "1"

[dependencies.thiserror]
version = "2"

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

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

[dependencies.tracing]
version = "0.1"
optional = true

[dev-dependencies.tokio]
version = "^1"
features = [
    "rt-multi-thread",
    "sync",
    "macros",
    "time",
    "test-util",
]