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.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] <support@github.com>
This commit is contained in:
dependabot[bot]
2023-10-23 19:28:15 +00:00
committed by Quentin Gliech
parent ea26f9e493
commit dbb3a86309
3 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -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",

View File

@ -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 }

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.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"] }