From cb07811416735f44d6f8bca84849203199212b21 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 22:39:00 +0000 Subject: [PATCH] build(deps): bump utoipa from 4.2.3 to 5.0.0 Bumps [utoipa](https://github.com/juhaku/utoipa) from 4.2.3 to 5.0.0. - [Release notes](https://github.com/juhaku/utoipa/releases) - [Changelog](https://github.com/juhaku/utoipa/blob/master/utoipa-rapidoc/CHANGELOG.md) - [Commits](https://github.com/juhaku/utoipa/compare/utoipa-4.2.3...utoipa-5.0.0) --- updated-dependencies: - dependency-name: utoipa dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 33 +++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5255cd9..3a3f20e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -88,7 +88,7 @@ dependencies = [ "tracing", "ureq", "url", - "utoipa", + "utoipa 4.2.3", "validator", ] @@ -1805,7 +1805,7 @@ dependencies = [ "tracing", "tracing-subscriber", "url", - "utoipa", + "utoipa 5.0.0", "utoipa-swagger-ui", "uuid", ] @@ -2885,7 +2885,19 @@ dependencies = [ "indexmap", "serde", "serde_json", - "utoipa-gen", + "utoipa-gen 4.3.0", +] + +[[package]] +name = "utoipa" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2b34fc58a72021914a5745832024b2baa638fe771df5a35f3d1b69266bd92c" +dependencies = [ + "indexmap", + "serde", + "serde_json", + "utoipa-gen 5.0.0", ] [[package]] @@ -2902,6 +2914,19 @@ dependencies = [ "uuid", ] +[[package]] +name = "utoipa-gen" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "866f11b33be38a747542f435578a164674b8922d958cc065d7f19319c19d4784" +dependencies = [ + "proc-macro2", + "quote", + "regex", + "syn 2.0.75", + "uuid", +] + [[package]] name = "utoipa-swagger-ui" version = "7.1.0" @@ -2916,7 +2941,7 @@ dependencies = [ "serde", "serde_json", "url", - "utoipa", + "utoipa 4.2.3", "zip", ] diff --git a/Cargo.toml b/Cargo.toml index c3d5c90..47f7e7d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,7 +28,7 @@ thiserror = "1.0.64" tokio = { version = "1.40.0", features = ["full"] } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } -utoipa = { version = "4.2.3", features = ["axum_extras", "uuid", "chrono"] } +utoipa = { version = "5.0.0", features = ["axum_extras", "uuid", "chrono"] } utoipa-swagger-ui = { version = "7.1.0", features = ["axum"] } uuid = { version = "1.10.0", features = ["serde", "v4", "fast-rng", "macro-diagnostics"] } url = "2.5.2"