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

Bump dependencies and bumps MSRV to 1.60

This commit is contained in:
Quentin Gliech
2022-06-27 23:37:21 +02:00
parent 27fa4fef4f
commit 821182acd1
7 changed files with 19 additions and 18 deletions

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
async-trait = "0.1.56"
axum = { version = "0.5.9", features = ["headers"] }
axum-extra = { version = "0.3.4", features = ["cookie-private"] }
axum-extra = { version = "0.3.5", features = ["cookie-private"] }
bincode = "1.3.3"
chrono = "0.4.19"
data-encoding = "2.3.2"

View File

@ -17,7 +17,7 @@ hyper = { version = "0.14.19", features = ["full"] }
serde_yaml = "0.8.24"
serde_json = "1.0.81"
url = "2.2.2"
argon2 = { version = "0.4.0", features = ["password-hash"] }
argon2 = { version = "0.4.1", features = ["password-hash"] }
reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = false, optional = true }
watchman_client = "0.8.0"
atty = "0.2.14"

View File

@ -21,8 +21,8 @@ hyper = { version = "0.14.19", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.3.4", features = ["cors"] }
axum = "0.5.9"
axum-macros = "0.2.2"
axum-extra = { version = "0.3.4", features = ["cookie-private"] }
axum-macros = "0.2.3"
axum-extra = { version = "0.3.5", features = ["cookie-private"] }
# Emails
lettre = { version = "0.10.0-rc.7", default-features = false, features = ["builder"] }
@ -37,7 +37,7 @@ serde_json = "1.0.81"
serde_urlencoded = "0.7.1"
# Password hashing
argon2 = { version = "0.4.0", features = ["password-hash"] }
argon2 = { version = "0.4.1", features = ["password-hash"] }
# Crypto, hashing and signing stuff
rsa = { git = "https://github.com/sandhose/RSA.git", branch = "bump-pkcs" }

View File

@ -16,7 +16,7 @@ anyhow = "1.0.58"
tracing = "0.1.35"
# Password hashing
argon2 = { version = "0.4.0", features = ["password-hash"] }
argon2 = { version = "0.4.1", features = ["password-hash"] }
password-hash = { version = "0.4.1", features = ["std"] }
rand = "0.8.5"
url = { version = "2.2.2", features = ["serde"] }