[package]
edition = "2024"
rust-version = "1.85"
name = "soft-cycle"
version = "0.2.0"
authors = ["aarkegz <aarkegz@gmail.com>"]
build = false
include = [
"CHANGELOG.md",
"README.md",
"src/",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Async controller for coordinating soft restarts and graceful shutdowns with shared listeners"
homepage = "https://github.com/GeminiLab/soft-cycle"
documentation = "https://docs.rs/soft-cycle"
readme = "README.md"
keywords = [
"async",
"shutdown",
"restart",
"graceful",
"tokio",
]
categories = [
"asynchronous",
"concurrency",
]
license = "MIT"
repository = "https://github.com/GeminiLab/soft-cycle"
[features]
default = ["global_instance"]
global_instance = []
[lib]
name = "soft_cycle"
path = "src/lib.rs"
[dependencies.tokio]
version = "1"
features = ["sync"]
default-features = false
[dev-dependencies.tokio]
version = "1"
features = ["full"]