From ba5701d2f5040c804d5dae0baa8a67d153db639c Mon Sep 17 00:00:00 2001 From: Eguo Wang Date: Sat, 7 Sep 2024 16:05:00 +0800 Subject: [PATCH] fix(apiserver): CI error caused by the failure to download swagger-ui, close #236 --- apiserver/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apiserver/Cargo.toml b/apiserver/Cargo.toml index f4e62a5..16859c5 100644 --- a/apiserver/Cargo.toml +++ b/apiserver/Cargo.toml @@ -32,5 +32,5 @@ tower-http = { version = "0.5.2", features = ["full"] } tracing-subscriber.workspace = true tracing.workspace = true utoipa = { version = "4.1.0", features = ["axum_extras", "uuid", "chrono"] } -utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] } +utoipa-swagger-ui = { version = "7.1.0", features = ["axum", "reqwest"] } uuid = { version = "1.10.0", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] }