Files
axum/examples/key-value-store/Cargo.toml
T

14 lines
456 B
TOML
Raw Normal View History

[package]
name = "example-key-value-store"
version = "0.1.0"
edition = "2018"
publish = false
[dependencies]
axum = { path = "../../axum" }
tokio = { version = "1.0", features = ["full"] }
tracing = "0.1"
2021-11-06 15:50:23 +01:00
tracing-subscriber = { version="0.3", features = ["env-filter"] }
tower = { version = "0.4", features = ["util", "timeout", "load-shed", "limit"] }
2021-12-01 21:14:25 +01:00
tower-http = { version = "0.2.0", features = ["add-extension", "auth", "compression-full", "trace"] }