From 7bedb75976dc3186dffef4a15a2e861802567362 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 19:44:23 +0000 Subject: [PATCH] build(deps): bump async-graphql from 6.0.5 to 6.0.6 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.5 to 6.0.6. - [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 149debe7..3478e3d6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -284,9 +284,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "6.0.5" +version = "6.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b5be1398e018b56697478e6917ef623faace61ab83489a124ed2b1f8430b5fd9" +checksum = "738953986114630243230d0961968972ac326530532dca8e46f085a42c26fc31" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -321,9 +321,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "6.0.5" +version = "6.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c7e6a70e1cec2c1b606f090b1c552a917a397155cf29e34a94a3fb2b25f517c9" +checksum = "a6f224b1a028d601e27c6fc8456eb580064cb20a58069c21e513b16d5d751e91" dependencies = [ "Inflector", "async-graphql-parser", @@ -338,9 +338,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "6.0.5" +version = "6.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0d239d9131931629e5c9f93954ae2c29743c394a92f6163ea17b8e707a32108f" +checksum = "06a6788bfac416c4ef118d3314d603ace7bae4159cd453ad8b9d8b071efd6ce0" dependencies = [ "async-graphql-value", "pest", @@ -350,9 +350,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "6.0.5" +version = "6.0.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0489808318931e0570fede9a36cf621c6aff856aa5b97e9cdf6f5da3b5d98147" +checksum = "c141bdc0b12f87ad76c963bf1bae5c04608e0547ad6831a86fbb8f753b2c438f" dependencies = [ "bytes", "indexmap 2.0.0", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index 3192d718..fd005c70 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.5", features = ["chrono", "url"] } +async-graphql = { version = "6.0.6", features = ["chrono", "url"] } async-trait = "0.1.73" chrono.workspace = true lettre = { version = "0.10.4", default-features = false } diff --git a/crates/handlers/Cargo.toml b/crates/handlers/Cargo.toml index a8347a91..310944a8 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.7.7", features = ["cookie-private"] } -async-graphql = { version = "6.0.5", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "6.0.6", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.10.4", default-features = false, features = ["builder"] }