rustrade-supervisor 0.4.0

Service lifecycle supervisor with backoff and circuit breakers for rustrade
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.94.1"
name = "rustrade-supervisor"
version = "0.4.0"
authors = ["nuniesmith"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Service lifecycle supervisor with backoff and circuit breakers for rustrade"
readme = "README.md"
keywords = [
    "supervisor",
    "tokio",
    "trading",
    "lifecycle",
]
categories = [
    "asynchronous",
    "concurrency",
]
license = "MIT"
repository = "https://github.com/nuniesmith/rustrade"

[package.metadata.docs.rs]
all-features = true

[features]
default = []
prometheus = ["dep:prometheus"]

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

[dependencies.anyhow]
version = "1"

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

[dependencies.prometheus]
version = "0.14"
optional = true

[dependencies.rand]
version = "0.10"

[dependencies.serde]
version = "1"
features = ["derive"]

[dependencies.thiserror]
version = "2"

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

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.serde_json]
version = "1"

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