From dbb3a86309228bcacd888e9afed82aef1688eef2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Oct 2023 19:28:15 +0000 Subject: [PATCH] build(deps): bump async-graphql from 6.0.7 to 6.0.9 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.7 to 6.0.9. - [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 26f49761a..2084a9da0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -301,9 +301,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "6.0.7" +version = "6.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1addb0b551c59640e15de99e7566a4e3a1186cf42269e160c485ba6d8b43fe30" +checksum = "117113a7ff4a98f2a864fa7a5274033b0907fce65dc8464993c75033f8074f90" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -338,9 +338,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "6.0.7" +version = "6.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e1121ff0be2feea705c24f6940162c4f14a077e50a217b16e091e6534a8c08a" +checksum = "6e4bb7b7b2344d24af860776b7fe4e4ee4a67cd965f076048d023f555703b854" dependencies = [ "Inflector", "async-graphql-parser", @@ -355,9 +355,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "6.0.7" +version = "6.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e0b6713fd4ffd610b8b6f6e911bf31277cbb84b7c2a9cdeeb39d1b3eed3b88e4" +checksum = "c47e1c1ff6cb7cae62c9cd768d76475cc68f156d8234b024fd2499ad0e91da21" dependencies = [ "async-graphql-value", "pest", @@ -367,9 +367,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "6.0.7" +version = "6.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7d74240f9daa8c1e8f73e9cfcc338d20a88d00bbeb83ded49ce8e5b4dcec0f5" +checksum = "2270df3a642efce860ed06fbcf61fc6db10f83c2ecb5613127fb453c82e012a4" dependencies = [ "bytes", "indexmap 2.0.2", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 258c42da3..adee732c2 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -9,7 +9,7 @@ repository.workspace = true [dependencies] anyhow.workspace = true -async-graphql = { version = "6.0.7", features = ["chrono", "url"] } +async-graphql = { version = "6.0.9", features = ["chrono", "url"] } async-trait = "0.1.74" chrono.workspace = true lettre = { version = "0.11.0", default-features = false } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index 9052ea07f..e4442aa04 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -30,7 +30,7 @@ axum = "0.6.20" axum-macros = "0.3.8" axum-extra = { version = "0.8.0", features = ["cookie-private"] } -async-graphql = { version = "6.0.7", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "6.0.9", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.11.0", default-features = false, features = ["builder"] }