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

Upgrade dependencies

This commit is contained in:
Quentin Gliech
2022-01-04 22:35:18 +01:00
parent f933ace007
commit 1377e09dbe
11 changed files with 53 additions and 186 deletions

View File

@ -10,26 +10,26 @@ dev = ["mas-static-files/dev", "mas-templates/dev"]
[dependencies]
# Async runtime
tokio = { version = "1.14.0", features = ["macros"] }
tokio = { version = "1.15.0", features = ["macros"] }
# Logging and tracing
tracing = "0.1.29"
# Error management
thiserror = "1.0.30"
anyhow = "1.0.51"
anyhow = "1.0.52"
# Web server
warp = "0.3.2"
hyper = { version = "0.14.16", features = ["full"] }
# Database access
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres"] }
sqlx = { version = "0.5.10", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde = { version = "1.0.131", features = ["derive"] }
serde = { version = "1.0.133", features = ["derive"] }
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
serde_json = "1.0.72"
serde_json = "1.0.74"
serde_urlencoded = "0.7.0"
# Password hashing
@ -40,7 +40,7 @@ rsa = { git = "https://github.com/sandhose/rsa.git", branch = "bump-pkcs" }
pkcs8 = { version = "0.8.0", features = ["pem"] }
elliptic-curve = { version = "0.11.6", features = ["pem"] }
chacha20poly1305 = { version = "0.9.0", features = ["std"] }
sha2 = "0.9.8"
sha2 = "0.10.0"
crc = "2.1.0"
# Various data types and utilities