supervised 0.1.0

Typed supervision for long-lived Tokio services.
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.75"
name = "supervised"
version = "0.1.0"
authors = ["Frederik Haaning <fh@frederikhaaning.dk>"]
build = false
include = [
    "src/**/*.rs",
    "tests/**/*.rs",
    "Cargo.toml",
    "README.md",
    "LICENSE-*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed supervision for long-lived Tokio services."
documentation = "https://docs.rs/supervised"
readme = "README.md"
keywords = [
    "supervision",
    "tokio",
    "services",
    "async",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT OR Apache-2.0"

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

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

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1.44"
features = [
    "rt",
    "time",
    "sync",
    "signal",
]
default-features = false

[dependencies.tokio-util]
version = "0.7"
default-features = false

[dependencies.tracing]
version = "0.1"

[dev-dependencies.tokio]
version = "1.44"
features = [
    "rt",
    "macros",
    "time",
    "sync",
]
default-features = false

[lints.clippy]
dbg_macro = "deny"
expect_used = "deny"
panic = "deny"
should_implement_trait = "allow"
todo = "deny"
unimplemented = "deny"
unreachable = "deny"
unwrap_used = "deny"
wildcard_imports = "deny"

[lints.clippy.all]
level = "warn"
priority = -1

[lints.rust]
unsafe_code = "forbid"
unused_must_use = "deny"