From 34ed7e505d24f55de5af93ce7231fefad3cf8650 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Aug 2023 19:40:54 +0000 Subject: [PATCH] build(deps): bump async-graphql from 6.0.1 to 6.0.4 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.1 to 6.0.4. - [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) --- updated-dependencies: - dependency-name: async-graphql dependency-type: direct:production update-type: version-update:semver-patch ... 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 77e6b455..37e83d0d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -294,9 +294,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "6.0.1" +version = "6.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0def00150a38be3267a3796b9c7feda20262dc879f9ae9d48464b24813da2b69" +checksum = "d1a08c6aae08f17556577c8b6964f9a4e63dab9ebb42c6c27990d48c810292f9" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -331,9 +331,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "6.0.1" +version = "6.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8aea94ff9eaaf80d13e862754192de44c5d93eb660c6688bd0f43f1c441f67b8" +checksum = "37bef462c5729e53970def569499cfcad11e5019f634158d015b75ffbc4609c3" dependencies = [ "Inflector", "async-graphql-parser", @@ -348,9 +348,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "6.0.1" +version = "6.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b898be948c43e00babf9154f5e92d12d011698f0171e2da9d2cfc2ffcfeaf28f" +checksum = "6b00b7296259479864a53dd32aa4dfbec8ed4c5d3b8c0337334a076fe0791935" dependencies = [ "async-graphql-value", "pest", @@ -360,9 +360,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "6.0.1" +version = "6.0.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8afef4917e23f7e651074dbfca64d82f194b817f00bd74d9df05d5408eb83e1e" +checksum = "77ae89db8cdd72492b16a487649405296eee4e40e25620d17720656816c4503a" dependencies = [ "bytes", "indexmap 2.0.0", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 1c76d84a..c74f47f5 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow.workspace = true -async-graphql = { version = "6.0.1", features = ["chrono", "url"] } +async-graphql = { version = "6.0.4", features = ["chrono", "url"] } async-trait = "0.1.72" chrono.workspace = true lettre = { version = "0.10.4", default-features = false } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 85b92876..2b3f2268 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -28,7 +28,7 @@ axum = "0.6.20" axum-macros = "0.3.8" axum-extra = { version = "0.7.7", features = ["cookie-private"] } -async-graphql = { version = "6.0.1", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "6.0.4", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.10.4", default-features = false, features = ["builder"] }