From 5238640144150a1a839ab4fc1885f38959509630 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 18:51:30 +0000 Subject: [PATCH] fix(deps): update rust crate utoipa-scalar to 0.2.0 --- Cargo.lock | 35 +++++++++++++++++++++++++++++------ sbv2_api/Cargo.toml | 2 +- 2 files changed, 30 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index aeb8757..eaed321 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1919,7 +1919,7 @@ dependencies = [ "sbv2_core", "serde", "tokio", - "utoipa", + "utoipa 4.2.3", "utoipa-scalar", ] @@ -2456,7 +2456,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]] @@ -2473,15 +2485,26 @@ dependencies = [ ] [[package]] -name = "utoipa-scalar" -version = "0.1.0" +name = "utoipa-gen" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b3ab4b7269d14d93626b0bfedf212f1b0995cb7d13d35daba21d579511e7fae8" +checksum = "866f11b33be38a747542f435578a164674b8922d958cc065d7f19319c19d4784" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.77", +] + +[[package]] +name = "utoipa-scalar" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c1291aa7a2223c2f8399d1c6627ca0ba57ca0d7ecac762a2094a9dfd6376445a" dependencies = [ "axum", "serde", "serde_json", - "utoipa", + "utoipa 5.0.0", ] [[package]] diff --git a/sbv2_api/Cargo.toml b/sbv2_api/Cargo.toml index c115f10..d650d49 100644 --- a/sbv2_api/Cargo.toml +++ b/sbv2_api/Cargo.toml @@ -13,7 +13,7 @@ sbv2_core = { version = "0.2.0-alpha", path = "../sbv2_core" } serde = { version = "1.0.210", features = ["derive"] } tokio = { version = "1.40.0", features = ["full"] } utoipa = { version = "4.2.3", features = ["axum_extras"] } -utoipa-scalar = { version = "0.1.0", features = ["axum"] } +utoipa-scalar = { version = "0.2.0", features = ["axum"] } [features] coreml = ["sbv2_core/coreml"]