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

Bump dependencies

This commit is contained in:
Quentin Gliech
2022-02-01 10:13:11 +01:00
parent 7e24cd0948
commit 9af8820564
15 changed files with 91 additions and 84 deletions

View File

@ -6,17 +6,17 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = "1.15.0"
tokio = "1.16.1"
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
chrono = { version = "0.4.19", features = ["serde"] }
serde = { version = "1.0.135", features = ["derive"] }
serde = { version = "1.0.136", features = ["derive"] }
thiserror = "1.0.30"
anyhow = "1.0.53"
tracing = "0.1.29"
warp = "0.3.2"
# Password hashing
argon2 = { version = "0.3.2", features = ["password-hash"] }
argon2 = { version = "0.3.3", features = ["password-hash"] }
password-hash = { version = "0.3.2", features = ["std"] }
rand = "0.8.4"
url = { version = "2.2.2", features = ["serde"] }