From 2ed0f475c8aab037dab2c9b44701ce0ab22f9f15 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Tue, 10 Sep 2024 02:58:06 +0800 Subject: [PATCH] fix CI --- utoipa-axum/Cargo.toml | 2 +- utoipa-swagger-ui/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utoipa-axum/Cargo.toml b/utoipa-axum/Cargo.toml index a278c451..f1d94af9 100644 --- a/utoipa-axum/Cargo.toml +++ b/utoipa-axum/Cargo.toml @@ -16,7 +16,7 @@ debug = [] [dependencies] axum = { version = "0.7", default-features = false } -utoipa = { version = "5.0.0-beta", path = "../utoipa", default-features = false } +utoipa = { version = "5.0.0-beta", path = "../utoipa", default-features = false, features = ["macros"] } tower-service = "0.3" tower-layer = "0.3.2" paste = "1.0" diff --git a/utoipa-swagger-ui/Cargo.toml b/utoipa-swagger-ui/Cargo.toml index 706339f0..393536bb 100644 --- a/utoipa-swagger-ui/Cargo.toml +++ b/utoipa-swagger-ui/Cargo.toml @@ -27,7 +27,7 @@ rocket = { version = "0.5", features = ["json"], optional = true } axum = { version = "0.7", default-features = false, features = [ "json", ], optional = true } -utoipa = { version = "5.0.0-alpha", path = "../utoipa", default-features = false } +utoipa = { version = "5.0.0-alpha", path = "../utoipa", default-features = false, features = ["macros"] } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" }