[package]
edition = "2021"
rust-version = "1.93"
name = "chio-http-serve"
version = "0.1.2"
build = false
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Graceful shutdown, connection drain, and server-hygiene helpers shared by every Chio HTTP service"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/backbay-labs/chio"
[lib]
name = "chio_http_serve"
path = "src/lib.rs"
[dependencies.axum]
version = "0.8"
[dependencies.thiserror]
version = "1"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower]
version = "0.5"
features = [
"util",
"make",
"buffer",
"timeout",
"load-shed",
"limit",
"retry",
]
[dependencies.tower-http]
version = "0.6"
features = ["timeout"]
[dependencies.tracing]
version = "0.1"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"