Fixed removing trailing slashes

This commit is contained in:
Martin Berg Alstad
2024-06-22 20:23:28 +02:00
parent 4b6608fd4f
commit 38fc8ce383
3 changed files with 16 additions and 9 deletions

View File

@ -13,7 +13,8 @@ tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
serde = { version = "1.0.203", features = ["derive", "rc"] }
# API
axum = { version = "0.7.5", features = ["macros"] }
tower-http = { version = "0.5.2", features = ["cors", "trace", "normalize-path"] }
tower-http = { version = "0.5.2", features = ["cors", "trace", "normalize-path", "tower"] }
tower = "0.4.13"
# Logging
tracing = "0.1.40"
tracing-subscriber = "0.3.18"