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

Bump sqlx from 0.5.10 to 0.5.11

Bumps [sqlx](https://github.com/launchbadge/sqlx) from 0.5.10 to 0.5.11.
- [Release notes](https://github.com/launchbadge/sqlx/releases)
- [Changelog](https://github.com/launchbadge/sqlx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/launchbadge/sqlx/compare/v0.5.10...v0.5.11)

---
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]
2022-02-21 19:32:13 +00:00
committed by Quentin Gliech
parent e48c74a74a
commit c4b5859591
6 changed files with 20 additions and 17 deletions

View File

@@ -21,7 +21,7 @@ url = { version = "2.2.2", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_with = { version = "1.12.0", features = ["hex", "chrono"] }
serde_json = "1.0.79"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
lettre = { version = "0.10.0-rc.4", default-features = false, features = ["serde", "builder"] }
rand = "0.8.5"

View File

@@ -27,7 +27,7 @@ hyper = { version = "0.14.17", features = ["full"] }
lettre = { version = "0.10.0-rc.4", default-features = false, features = ["builder"] }
# Database access
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde = { version = "1.0.136", features = ["derive"] }

View File

@@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
tokio = "1.17.0"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"

View File

@@ -11,6 +11,6 @@ async-trait = "0.1.52"
tokio-stream = "0.1.8"
futures-util = "0.3.21"
tracing = "0.1.31"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
mas-storage = { path = "../storage" }

View File

@@ -13,7 +13,7 @@ warp = "0.3.2"
hyper = { version = "0.14.17", features = ["full"] }
thiserror = "1.0.30"
anyhow = "1.0.53"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.5.11", features = ["runtime-tokio-rustls", "postgres"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_with = { version = "1.12.0", features = ["hex", "chrono"] }