1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-29 22:01:14 +03:00

Bump async-graphql from 5.0.1 to 5.0.2

Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 5.0.1 to 5.0.2.
- [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]
2022-11-30 19:06:25 +00:00
committed by Quentin Gliech
parent c0ab8c1b10
commit c02f59bbaf
3 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View File

@ -178,9 +178,9 @@ dependencies = [
[[package]]
name = "async-graphql"
version = "5.0.1"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc060e5d5d1efd9c61d789da60b540f6ffc304d1a23342e5ec12048ce14562ff"
checksum = "5005cfd364b44d9cb55486b44184fe41a57b97339e17ce10db05f6b6093571d9"
dependencies = [
"async-graphql-derive",
"async-graphql-parser",
@ -214,9 +214,9 @@ dependencies = [
[[package]]
name = "async-graphql-derive"
version = "5.0.1"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b551916d8ae6ec439be5a6fe37df87eb1f3fb070cb40cbaebedf429f5b96c6f"
checksum = "8ff995b9d89198740d3701f1e5f7101e2822d5f4f1f4db19e9a1a9314cb14364"
dependencies = [
"Inflector",
"async-graphql-parser",
@ -230,9 +230,9 @@ dependencies = [
[[package]]
name = "async-graphql-parser"
version = "5.0.1"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1e6141d18e3e4a07a86061f100fe7dbf31ad93e23dfb31b4fa985a7a8408bd6"
checksum = "8e73570e2270b9921a183df47760bea67a65afb145eaaa1b82a9c34b0c6209ff"
dependencies = [
"async-graphql-value",
"pest",
@ -242,9 +242,9 @@ dependencies = [
[[package]]
name = "async-graphql-value"
version = "5.0.1"
version = "5.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dcfc59c317f0ef8fa8aa0ea3d0f9ef9f9561560b8a65f51750672061e8a338a"
checksum = "97013c726c11f29262f52e9487025a72bae58262bad3c26389936ce3bf143b11"
dependencies = [
"bytes 1.3.0",
"indexmap",

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
async-graphql = { version = "5.0.1", features = ["chrono", "url"] }
async-graphql = { version = "5.0.2", features = ["chrono", "url"] }
chrono = "0.4.23"
serde = { version = "1.0.148", features = ["derive"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }

View File

@ -25,7 +25,7 @@ axum = { version = "0.6.1", features = ["ws"] }
axum-macros = "0.3.0"
axum-extra = { version = "0.4.1", features = ["cookie-private"] }
async-graphql = { version = "5.0.1", features = ["tracing", "apollo_tracing"] }
async-graphql = { version = "5.0.2", features = ["tracing", "apollo_tracing"] }
# Emails
lettre = { version = "0.10.1", default-features = false, features = ["builder"] }