From 0950267a488e271d6a502b5cdf1a8529df01cfd6 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 19 Aug 2025 18:21:06 -0400 Subject: [PATCH] tsk-57: Added uuid feature for utoipa --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 5cfd928..643dd7c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -550,6 +550,7 @@ dependencies = [ "proc-macro2", "quote", "syn", + "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index ca39748..0463a78 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ rand = { version = "0.9.1" } time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] } uuid = { version = "1.17.0", features = ["v4", "serde"] } josekit = { version = "0.10.3" } -utoipa = { version = "5.4.0" } +utoipa = { version = "5.4.0", features = ["uuid"] } [dev-dependencies] tempfile = { version = "3.20.0" }