update utoipa to the latest version

This commit is contained in:
Tamo 2024-10-02 14:59:42 +02:00
parent 4859a36cb6
commit 9901d63068
4 changed files with 6 additions and 8 deletions

8
Cargo.lock generated
View File

@ -5846,9 +5846,9 @@ checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
[[package]]
name = "utoipa"
version = "5.0.0-alpha.1"
version = "5.0.0-beta.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c082de846a4d434a9dcfe3358dbe4a0aa5d4f826c3af29cdbd97404e1ffe71f4"
checksum = "86fac56d240b49c629b9083c932ac20a23d926937e67c21ba209f836e2983d4f"
dependencies = [
"indexmap",
"serde",
@ -5858,9 +5858,9 @@ dependencies = [
[[package]]
name = "utoipa-gen"
version = "5.0.0-alpha.1"
version = "5.0.0-beta.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "84a71c23e17df16027cc552b5b249a2a5e6a1ea36ab37363a1ac29b69ab36035"
checksum = "31d88270777931b8133b119c953062bd41665bb8507841f7d433f46d2765e9d4"
dependencies = [
"proc-macro2",
"quote",

View File

@ -104,7 +104,7 @@ tracing-trace = { version = "0.1.0", path = "../tracing-trace" }
tracing-actix-web = "0.7.11"
build-info = { version = "1.7.0", path = "../build-info" }
roaring = "0.10.2"
utoipa = { version = "5.0.0-alpha.1", features = ["actix_extras", "non_strict_integers"] }
utoipa = { version = "5.0.0-beta.0", features = ["actix_extras", "non_strict_integers"] }
utoipa-scalar = { version = "0.2.0-alpha.0", features = ["actix-web"] }
[dev-dependencies]

View File

@ -34,8 +34,6 @@ pub mod tasks;
#[derive(OpenApi)]
#[openapi(
nest((path = "/tasks", api = tasks::TaskApi) ),
// paths(get_todos, create_todo, delete_todo, get_todo_by_id, update_todo, search_todos),
// components(schemas(TaskId))
)]
pub struct MeilisearchApi;

View File

@ -254,7 +254,7 @@ async fn cancel_tasks(
Ok(HttpResponse::Ok().json(task))
}
/// Delete tasks.
/// Delete tasks
///
/// Delete [tasks](https://docs.meilisearch.com/learn/advanced/asynchronous_operations.html) on filter
#[utoipa::path(