From 95b8307619fd3787e12947cef06cda7643fc2569 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Dec 2022 14:31:00 +0000 Subject: [PATCH] Bump async-graphql from 5.0.2 to 5.0.3 Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 5.0.2 to 5.0.3. - [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 c56eb7ee..cc3fb65e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -178,9 +178,9 @@ dependencies = [ [[package]] name = "async-graphql" -version = "5.0.2" +version = "5.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5005cfd364b44d9cb55486b44184fe41a57b97339e17ce10db05f6b6093571d9" +checksum = "42bb92ffef089e5b61e90bcc004c9689554dfb5a150d88e81c7f6fef9e76eeae" dependencies = [ "async-graphql-derive", "async-graphql-parser", @@ -214,9 +214,9 @@ dependencies = [ [[package]] name = "async-graphql-derive" -version = "5.0.2" +version = "5.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8ff995b9d89198740d3701f1e5f7101e2822d5f4f1f4db19e9a1a9314cb14364" +checksum = "4fa579c7cea32030600994d579554b257e10d5ad87705f3d150b49ee08bd629d" dependencies = [ "Inflector", "async-graphql-parser", @@ -230,9 +230,9 @@ dependencies = [ [[package]] name = "async-graphql-parser" -version = "5.0.2" +version = "5.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8e73570e2270b9921a183df47760bea67a65afb145eaaa1b82a9c34b0c6209ff" +checksum = "3b67a5bea60997ca72908854655ae87f7970dc7d786d9a42fd1d17069fa42ebc" dependencies = [ "async-graphql-value", "pest", @@ -242,9 +242,9 @@ dependencies = [ [[package]] name = "async-graphql-value" -version = "5.0.2" +version = "5.0.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "97013c726c11f29262f52e9487025a72bae58262bad3c26389936ce3bf143b11" +checksum = "79c2721eb88245ca055e148a3f03cb11a88535c206ac5a7c59e9edb22816320a" dependencies = [ "bytes 1.3.0", "indexmap", diff --git a/crates/graphql/Cargo.toml b/crates/graphql/Cargo.toml index f7fe2420..c3ad978d 100644 --- a/crates/graphql/Cargo.toml +++ b/crates/graphql/Cargo.toml @@ -7,7 +7,7 @@ license = "Apache-2.0" [dependencies] anyhow = "1.0.66" -async-graphql = { version = "5.0.2", features = ["chrono", "url"] } +async-graphql = { version = "5.0.3", features = ["chrono", "url"] } chrono = "0.4.23" serde = { version = "1.0.149", 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 1692c388..fe644285 100644 --- a/crates/handlers/Cargo.toml +++ b/crates/handlers/Cargo.toml @@ -25,7 +25,7 @@ axum = { version = "0.6.1", features = ["ws"] } axum-macros = "0.3.0" axum-extra = { version = "0.4.2", features = ["cookie-private"] } -async-graphql = { version = "5.0.2", features = ["tracing", "apollo_tracing"] } +async-graphql = { version = "5.0.3", features = ["tracing", "apollo_tracing"] } # Emails lettre = { version = "0.10.1", default-features = false, features = ["builder"] }