runtime-rs 0.1.2

Typed service registry and Tokio lifecycle runtime for boot, reload, background tasks, and graceful shutdown.
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 = "runtime-rs"
version = "0.1.2"
authors = ["iadev09 <iadev09@claviron.org>"]
build = false
exclude = [
    "/.gitea/**",
    "/Cargo.lock",
    "/justfile",
    "/rustfmt.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Typed service registry and Tokio lifecycle runtime for boot, reload, background tasks, and graceful shutdown."
readme = "README.md"
keywords = [
    "tokio",
    "runtime",
    "lifecycle",
    "registry",
]
categories = ["asynchronous"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/iadev09/runtime-rs"

[features]
default = ["registry"]
events = ["dep:dashmap"]
full = [
    "registry",
    "support",
    "events",
]
registry = []
support = []

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

[[example]]
name = "axum"
path = "examples/axum.rs"
required-features = ["registry"]

[[example]]
name = "minimal"
path = "examples/minimal.rs"
required-features = ["registry"]

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

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

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt",
    "sync",
    "time",
]

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

[dependencies.tracing]
version = "0.1"

[dev-dependencies.axum]
version = "0.8"

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