axum/examples/graceful-shutdown/Cargo.toml

12 lines
352 B
TOML
Raw Normal View History

2021-09-28 11:08:49 +02:00
[package]
name = "example-graceful-shutdown"
version = "0.1.0"
edition = "2021"
2021-09-28 11:08:49 +02:00
publish = false
[dependencies]
axum = { path = "../../axum", features = ["tracing"] }
2021-09-28 11:08:49 +02:00
tokio = { version = "1.0", features = ["full"] }
tower-http = { version = "0.6.1", features = ["timeout", "trace"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }