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

Bump Rust depdenencies

This commit is contained in:
Quentin Gliech
2023-04-18 19:40:53 +02:00
parent 186f0956f0
commit 4baa15bbd3
26 changed files with 950 additions and 694 deletions

View File

@ -7,22 +7,22 @@ license = "Apache-2.0"
[dependencies]
apalis-core = "=0.4.0-alpha.5"
anyhow = "1.0.69"
anyhow = "1.0.70"
atty = "0.2.14"
axum = "0.6.11"
axum = "0.6.15"
camino = "1.1.4"
clap = { version = "4.1.11", features = ["derive"] }
clap = { version = "4.2.2", features = ["derive"] }
dotenv = "0.15.0"
hyper = { version = "0.14.25", features = ["full"] }
hyper = { version = "0.14.26", features = ["full"] }
itertools = "0.10.5"
listenfd = "1.0.1"
rand = "0.8.5"
rand_chacha = "0.3.1"
rustls = "0.20.8"
serde_json = "1.0.94"
serde_yaml = "0.9.19"
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
tokio = { version = "1.26.0", features = ["full"] }
rustls = "0.21.0"
serde_json = "1.0.96"
serde_yaml = "0.9.21"
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
tokio = { version = "1.27.0", features = ["full"] }
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.4.0", features = ["fs", "compression-full"] }
url = "2.3.1"