1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

build(deps): bump async-graphql from 6.0.9 to 6.0.10

Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.9 to 6.0.10.
- [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] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-11-06 08:33:39 +00:00
committed by Quentin Gliech
parent 5a0d1f8c72
commit 10fb172e9b
3 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -291,9 +291,9 @@ dependencies = [
[[package]]
name = "async-graphql"
version = "6.0.9"
version = "6.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "117113a7ff4a98f2a864fa7a5274033b0907fce65dc8464993c75033f8074f90"
checksum = "a665c228a226506796fca6de90cf1ad477157513ee15d6327bf810d5a3a98f72"
dependencies = [
"async-graphql-derive",
"async-graphql-parser",
@ -328,9 +328,9 @@ dependencies = [
[[package]]
name = "async-graphql-derive"
version = "6.0.9"
version = "6.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e4bb7b7b2344d24af860776b7fe4e4ee4a67cd965f076048d023f555703b854"
checksum = "d2f04964faf9ad71289d4c51b3b43a7b9c01c23c16d9c52bca48161ba8a3cbc3"
dependencies = [
"Inflector",
"async-graphql-parser",
@ -345,9 +345,9 @@ dependencies = [
[[package]]
name = "async-graphql-parser"
version = "6.0.9"
version = "6.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c47e1c1ff6cb7cae62c9cd768d76475cc68f156d8234b024fd2499ad0e91da21"
checksum = "786a2329756a9946d83106e389a977a808ab22628cb797c1afcf174fd01c40d5"
dependencies = [
"async-graphql-value",
"pest",
@ -357,9 +357,9 @@ dependencies = [
[[package]]
name = "async-graphql-value"
version = "6.0.9"
version = "6.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2270df3a642efce860ed06fbcf61fc6db10f83c2ecb5613127fb453c82e012a4"
checksum = "305ca1e36538655babbfa8a9a1d82cb1dd01961af2feeafa06d3a0c9af793bed"
dependencies = [
"bytes",
"indexmap 2.1.0",

View File

@ -9,7 +9,7 @@ repository.workspace = true
[dependencies]
anyhow.workspace = true
async-graphql = { version = "6.0.9", features = ["chrono", "url"] }
async-graphql = { version = "6.0.10", features = ["chrono", "url"] }
async-trait = "0.1.74"
chrono.workspace = true
lettre = { version = "0.11.1", default-features = false }

View File

@ -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.9", features = ["tracing", "apollo_tracing"] }
async-graphql = { version = "6.0.10", features = ["tracing", "apollo_tracing"] }
# Emails
lettre = { version = "0.11.1", default-features = false, features = ["builder"] }