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

Bump async-graphql from 5.0.4 to 5.0.5

Bumps [async-graphql](https://github.com/async-graphql/async-graphql) from 5.0.4 to 5.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-01-03 19:06:43 +00:00
committed by Quentin Gliech
parent 21ad6dd628
commit 1e07440167
3 changed files with 25 additions and 10 deletions

31
Cargo.lock generated
View File

@@ -178,9 +178,9 @@ dependencies = [
[[package]]
name = "async-graphql"
version = "5.0.4"
version = "5.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d56592fdc896f45ca73e04f9562033f95ab38b33878155464003187190bb4ba"
checksum = "6c7c1f9bf1a875b047e97404d16313b3dde09ea06d0639800c9657138e38a441"
dependencies = [
"async-graphql-derive",
"async-graphql-parser",
@@ -193,6 +193,7 @@ dependencies = [
"fast_chemail",
"fnv",
"futures-util",
"handlebars",
"http",
"indexmap",
"mime",
@@ -214,9 +215,9 @@ dependencies = [
[[package]]
name = "async-graphql-derive"
version = "5.0.4"
version = "5.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5cbc24a7c61fb52fa8eb563b8ca60ec890d54778be644796ef72047a07c555b2"
checksum = "381ed1575c53cfc864013932bb5a5df05c21802781dfa6dd27c57068eac9a80d"
dependencies = [
"Inflector",
"async-graphql-parser",
@@ -230,9 +231,9 @@ dependencies = [
[[package]]
name = "async-graphql-parser"
version = "5.0.4"
version = "5.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7dd090476ce5300418018518c25f2247576a214ffadc504f2af1f074939daf8"
checksum = "41a7ec217e184ca3034c806957842afb28914f894b69cb5a76b4a57e64f44506"
dependencies = [
"async-graphql-value",
"pest",
@@ -242,9 +243,9 @@ dependencies = [
[[package]]
name = "async-graphql-value"
version = "5.0.4"
version = "5.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "305055a67bece03b7c870544b38d5ed87aaa4d6792f14e4aabdd33e5e43120fa"
checksum = "e294ef57859c27d31a9bb23edf1db948f7534445df30115d8672314f65451858"
dependencies = [
"bytes 1.3.0",
"indexmap",
@@ -2038,6 +2039,20 @@ dependencies = [
"tracing",
]
[[package]]
name = "handlebars"
version = "4.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "035ef95d03713f2c347a72547b7cd38cbc9af7cd51e6099fb62d586d4a6dee3a"
dependencies = [
"log",
"pest",
"pest_derive",
"serde",
"serde_json",
"thiserror",
]
[[package]]
name = "hashbrown"
version = "0.12.3"

View File

@@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
async-graphql = { version = "5.0.4", features = ["chrono", "url"] }
async-graphql = { version = "5.0.5", features = ["chrono", "url"] }
chrono = "0.4.23"
serde = { version = "1.0.152", features = ["derive"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }

View File

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