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.4 to 6.0.5

Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 6.0.4 to 6.0.5.
- [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-09-01 19:44:37 +00:00
committed by Quentin Gliech
parent 84fd9e043c
commit 455f2a7725
3 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -284,9 +284,9 @@ dependencies = [
[[package]]
name = "async-graphql"
version = "6.0.4"
version = "6.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1a08c6aae08f17556577c8b6964f9a4e63dab9ebb42c6c27990d48c810292f9"
checksum = "b5be1398e018b56697478e6917ef623faace61ab83489a124ed2b1f8430b5fd9"
dependencies = [
"async-graphql-derive",
"async-graphql-parser",
@ -321,9 +321,9 @@ dependencies = [
[[package]]
name = "async-graphql-derive"
version = "6.0.4"
version = "6.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37bef462c5729e53970def569499cfcad11e5019f634158d015b75ffbc4609c3"
checksum = "c7e6a70e1cec2c1b606f090b1c552a917a397155cf29e34a94a3fb2b25f517c9"
dependencies = [
"Inflector",
"async-graphql-parser",
@ -338,9 +338,9 @@ dependencies = [
[[package]]
name = "async-graphql-parser"
version = "6.0.4"
version = "6.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6b00b7296259479864a53dd32aa4dfbec8ed4c5d3b8c0337334a076fe0791935"
checksum = "0d239d9131931629e5c9f93954ae2c29743c394a92f6163ea17b8e707a32108f"
dependencies = [
"async-graphql-value",
"pest",
@ -350,9 +350,9 @@ dependencies = [
[[package]]
name = "async-graphql-value"
version = "6.0.4"
version = "6.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77ae89db8cdd72492b16a487649405296eee4e40e25620d17720656816c4503a"
checksum = "0489808318931e0570fede9a36cf621c6aff856aa5b97e9cdf6f5da3b5d98147"
dependencies = [
"bytes",
"indexmap 2.0.0",

View File

@ -9,7 +9,7 @@ repository.workspace = true
[dependencies]
anyhow.workspace = true
async-graphql = { version = "6.0.4", features = ["chrono", "url"] }
async-graphql = { version = "6.0.5", features = ["chrono", "url"] }
async-trait = "0.1.73"
chrono.workspace = true
lettre = { version = "0.10.4", default-features = false }

View File

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