diff --git a/Cargo.toml b/Cargo.toml index 99053cd..9d70ad3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,10 +4,11 @@ version = "0.2.0" edition = "2024" [dependencies] -axum = { version = "0.8.3" } +axum = { version = "0.8.3", features = ["multipart"] } serde = { version = "1.0.219", features = ["derive"] } serde_json = { version = "1.0.140" } tokio = { version = "1.44.2", features = ["rt-multi-thread"] } +tower-http = { version = "0.6.2", features = ["timeout"] } tracing-subscriber = "0.3.19" uuid = { version = "1.16.0", features = ["v4", "serde"] } sqlx = { version = "0.8.3", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] }