Files
axum/examples/graceful-shutdown/Cargo.toml
T

12 lines
352 B
TOML
Raw Normal View History

2021-09-28 17:08:49 +08:00
[package]
name = "example-graceful-shutdown"
version = "0.1.0"
edition = "2021"
2021-09-28 17:08:49 +08:00
publish = false
[dependencies]
2023-12-29 12:17:58 +01:00
axum = { path = "../../axum", features = ["tracing"] }
2021-09-28 17:08:49 +08:00
tokio = { version = "1.0", features = ["full"] }
2024-09-27 16:50:52 +00:00
tower-http = { version = "0.6.1", features = ["timeout", "trace"] }
2023-11-26 11:34:41 +01:00
tracing-subscriber = { version = "0.3", features = ["env-filter"] }