From e0021af09c01571cfe9db55ca5e8607058ee0712 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Nov 2022 19:12:57 +0000 Subject: [PATCH] Bump async-graphql from 4.0.16 to 5.0.0 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 4.0.16 to 5.0.0. - [Release notes](https://github.com/async-graphql/async-graphql/releases) - [Changelog](https://github.com/async-graphql/async-graphql/blob/master/CHANGELOG.md) - [Commits](https://github.com/async-graphql/async-graphql/commits/v5.0.0) --- updated-dependencies: - dependency-name: async-graphql dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 ++++++++-------- crates/graphql/Cargo.toml | 2 +- crates/handlers/Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 22c490ac..4d19b470 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,9 +178,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "4.0.16" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9ed522678d412d77effe47b3c82314ac36952a35e6e852093dd48287c421f80" +checksum = "50c5cbd2e1faa52369e20aab955e83d95196763cf30f9e471a3af19bbe891e73" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -214,9 +214,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "4.0.16" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c121a894495d7d3fc3d4e15e0a9843e422e4d1d9e3c514d8062a1c94b35b005d" +checksum = "b9f85c39529d289b9ae20f52905f0a6445fdf52a9598494595e178e1dacdad8d" dependencies = [ "Inflector", "async-graphql-parser", @@ -230,9 +230,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "4.0.16" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b6c386f398145c6180206c1869c2279f5a3d45db5be4e0266148c6ac5c6ad68" +checksum = "0c8b81206a661e8a7b3eb7057823e9ad4c9e70f1f44a9b2636297d4be702105e" dependencies = [ "async-graphql-value", "pest", @@ -242,9 +242,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "4.0.16" +version = "5.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7a941b499fead4a3fb5392cabf42446566d18c86313f69f2deab69560394d65f" +checksum = "9bda429d9fa88c2630a6183ea3affb7f5dc7930a7903303a70e6ec1c8158b736" dependencies = [ "bytes 1.3.0", "indexmap", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index fe5b70cf..3652af49 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" [dependencies] -async-graphql = { version = "4.0.16", features = ["chrono", "url"] } +async-graphql = { version = "5.0.0", features = ["chrono", "url"] } chrono = "0.4.23" serde = { version = "1.0.148", features = ["derive"] } sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 5d2b23d1..71275ba7 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -25,7 +25,7 @@ axum = { version = "0.6.0-rc.5", features = ["ws"] } axum-macros = "0.3.0-rc.3" axum-extra = { version = "0.4.0-rc.3", features = ["cookie-private"] } -async-graphql = { version = "4.0.16", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "5.0.0", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.10.1", default-features = false, features = ["builder"] }