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

build(deps): bump sqlx from 0.7.1 to 0.7.2

Bumps [sqlx](https://github.com/launchbadge/sqlx) from 0.7.1 to 0.7.2.
- [Changelog](https://github.com/launchbadge/sqlx/blob/main/CHANGELOG.md)
- [Commits](https://github.com/launchbadge/sqlx/commits)

---
updated-dependencies:
- dependency-name: sqlx
  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-27 19:34:01 +00:00
committed by Quentin Gliech
parent 743e1f08ec
commit fe92203f59
5 changed files with 20 additions and 21 deletions

View File

@@ -23,7 +23,7 @@ rand_chacha = "0.3.1"
rustls = "0.21.7"
serde_json.workspace = true
serde_yaml = "0.9.25"
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
tokio = { version = "1.32.0", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.4.4", features = ["fs"] }

View File

@@ -36,7 +36,7 @@ async-graphql = { version = "6.0.7", features = ["tracing", "apollo_tracing"] }
lettre = { version = "0.10.4", default-features = false, features = ["builder"] }
# Database access
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde.workspace = true

View File

@@ -9,7 +9,7 @@ repository.workspace = true
[dependencies]
async-trait = "0.1.73"
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "json", "uuid", "ipnetwork"] }
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "json", "uuid", "ipnetwork"] }
sea-query = { version = "0.30.2", features = ["derive", "attr", "with-uuid", "with-chrono", "postgres-array"] }
sea-query-binder = { version = "0.5.0", features = ["sqlx-postgres", "with-uuid", "with-chrono", "postgres-array"] }
chrono.workspace = true

View File

@@ -18,7 +18,7 @@ event-listener = "3.0.0"
futures-lite = "1.13.0"
rand.workspace = true
rand_chacha = "0.3.1"
sqlx = { version = "0.7.1", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.7.2", features = ["runtime-tokio-rustls", "postgres"] }
thiserror.workspace = true
tokio = { version = "1.32.0", features = ["rt"] }
tower = "0.4.13"