You've already forked authentication-service
mirror of
https://github.com/matrix-org/matrix-authentication-service.git
synced 2025-07-28 11:02:02 +03:00
Bump sqlx from 0.5.13 to 0.6.0
This commit is contained in:
@ -22,7 +22,7 @@ serde = "1.0.137"
|
||||
serde_with = "1.14.0"
|
||||
serde_urlencoded = "0.7.1"
|
||||
serde_json = "1.0.81"
|
||||
sqlx = "0.5.13"
|
||||
sqlx = "0.6.0"
|
||||
thiserror = "1.0.31"
|
||||
tokio = "1.19.2"
|
||||
tower = { version = "0.4.12", features = ["util"] }
|
||||
|
@ -21,7 +21,7 @@ url = { version = "2.2.2", features = ["serde"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
serde_with = { version = "1.14.0", features = ["hex", "chrono"] }
|
||||
serde_json = "1.0.81"
|
||||
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
lettre = { version = "0.10.0-rc.7", default-features = false, features = ["serde", "builder"] }
|
||||
|
||||
rand = "0.8.5"
|
||||
|
@ -209,7 +209,7 @@ impl DatabaseConfig {
|
||||
PgPoolOptions::new()
|
||||
.max_connections(self.max_connections.into())
|
||||
.min_connections(self.min_connections)
|
||||
.connect_timeout(self.connect_timeout)
|
||||
.acquire_timeout(self.connect_timeout)
|
||||
.idle_timeout(self.idle_timeout)
|
||||
.max_lifetime(self.max_lifetime)
|
||||
.connect_with(options)
|
||||
|
@ -28,7 +28,7 @@ axum-extra = { version = "0.3.4", features = ["cookie-private"] }
|
||||
lettre = { version = "0.10.0-rc.7", default-features = false, features = ["builder"] }
|
||||
|
||||
# Database access
|
||||
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
|
||||
# Various structure (de)serialization
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
|
@ -7,7 +7,7 @@ license = "Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
tokio = "1.19.2"
|
||||
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] }
|
||||
sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json"] }
|
||||
chrono = { version = "0.4.19", features = ["serde"] }
|
||||
serde = { version = "1.0.137", features = ["derive"] }
|
||||
serde_json = "1.0.81"
|
||||
|
@ -11,6 +11,6 @@ async-trait = "0.1.56"
|
||||
tokio-stream = "0.1.9"
|
||||
futures-util = "0.3.21"
|
||||
tracing = "0.1.35"
|
||||
sqlx = { version = "0.5.13", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
sqlx = { version = "0.6.0", features = ["runtime-tokio-rustls", "postgres"] }
|
||||
|
||||
mas-storage = { path = "../storage" }
|
||||
|
Reference in New Issue
Block a user