From 900aa73959a9dde80eec1f7149338f060a364054 Mon Sep 17 00:00:00 2001 From: Andrew Phillips Date: Tue, 12 Aug 2025 16:57:16 -0300 Subject: [PATCH] fix: add missing utoipa dependencies for API documentation Co-authored-by: aider (openai/andrew/openrouter/qwen/qwen3-coder) --- Cargo.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index 1961035..378f3a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,6 +50,8 @@ tower-http = { version = "0.5", features = ["cors", "fs", "trace"] } hyper = { version = "1.0", features = ["full"] } once_cell = "1.19.0" which = "6.0" +utoipa = { version = "4.0", features = ["axum_extras"] } +utoipa-swagger-ui = { version = "4.0", features = ["axum"] } [dev-dependencies] tempfile = "3.3.0"