diff --git a/Cargo.lock b/Cargo.lock index 5ba9858..96dd619 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2176,7 +2176,7 @@ dependencies = [ "tracing", "tracing-opentelemetry", "tracing-subscriber", - "utoipa", + "utoipa 4.2.3", "utoipa-rapidoc", "utoipa-redoc", "utoipa-swagger-ui", @@ -3039,7 +3039,19 @@ dependencies = [ "indexmap 2.5.0", "serde", "serde_json", - "utoipa-gen", + "utoipa-gen 4.3.0", +] + +[[package]] +name = "utoipa" +version = "5.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8861811f7213bb866cd02319acb69a15b0ef8ca46874e805bd92d488c779036a" +dependencies = [ + "indexmap 2.5.0", + "serde", + "serde_json", + "utoipa-gen 5.1.1", ] [[package]] @@ -3056,6 +3068,17 @@ dependencies = [ "uuid", ] +[[package]] +name = "utoipa-gen" +version = "5.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5fadf94f07d67df4b15e6490dd9a9d59d7374849413e7f137eafe52fdcbd0db5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.79", +] + [[package]] name = "utoipa-rapidoc" version = "4.0.0" @@ -3065,19 +3088,19 @@ dependencies = [ "axum", "serde", "serde_json", - "utoipa", + "utoipa 4.2.3", ] [[package]] name = "utoipa-redoc" -version = "4.0.0" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ca44a24600ba6bead97e455954d2f01b062af9eff5facba4266fd3d62687ef0f" +checksum = "9218304bba9a0ea5e92085b0a427ccce5fd56eaaf6436d245b7578e6a95787e1" dependencies = [ "axum", "serde", "serde_json", - "utoipa", + "utoipa 5.1.1", ] [[package]] @@ -3094,7 +3117,7 @@ dependencies = [ "serde", "serde_json", "url", - "utoipa", + "utoipa 4.2.3", "zip", ] diff --git a/Cargo.toml b/Cargo.toml index e52e3d8..b5b276c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -49,7 +49,7 @@ opentelemetry-otlp = { version = "0.25.0", features = [ utoipa = { version = "4.2.3", features = ["axum_extras", "uuid", "chrono"] } utoipa-swagger-ui = { version = "7.1", features = ["axum", "reqwest"] } -utoipa-redoc = { version = "4.0", features = ["axum"] } +utoipa-redoc = { version = "5.0", features = ["axum"] } utoipa-rapidoc = { version = "4.0", features = ["axum"] } tower-http = { version = "0.6.1", features = ["cors", "fs"] }