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

Upgrade all dependencies

This commit is contained in:
Quentin Gliech
2021-09-23 20:54:24 +02:00
parent 3bf86c4b21
commit 3cbce1e33e
5 changed files with 43 additions and 43 deletions

View File

@@ -6,16 +6,16 @@ edition = "2018"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.11.0", features = ["full"] }
tokio = { version = "1.12.0", features = ["full"] }
anyhow = "1.0.44"
clap = "3.0.0-beta.4"
tracing = "0.1.27"
tracing-subscriber = "0.2.22"
tracing = "0.1.28"
tracing-subscriber = "0.2.24"
dotenv = "0.15.0"
schemars = { version = "0.8.3", features = ["url", "chrono"] }
schemars = { version = "0.8.5", features = ["url", "chrono"] }
tower = { version = "0.4.8", features = ["full"] }
tower-http = { version = "0.1.1", features = ["full"] }
hyper = { version = "0.14.12", features = ["full"] }
hyper = { version = "0.14.13", features = ["full"] }
serde_yaml = "0.8.21"
warp = "0.3.1"
argon2 = { version = "0.3.1", features = ["password-hash"] }

View File

@@ -6,14 +6,14 @@ edition = "2018"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.11.0", features = [] }
tracing = { version = "0.1.27", features = ["log"] }
tokio = { version = "1.12.0", features = [] }
tracing = { version = "0.1.28", features = ["log"] }
async-trait = "0.1.51"
thiserror = "1.0.29"
anyhow = "1.0.44"
schemars = { version = "0.8.3", features = ["url", "chrono"] }
schemars = { version = "0.8.5", features = ["url", "chrono"] }
figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
chrono = { version = "0.4.19", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }

View File

@@ -7,13 +7,13 @@ license = "Apache-2.0"
[dependencies]
# Async runtime
tokio = { version = "1.11.0", features = ["full"] }
tokio = { version = "1.12.0", features = ["full"] }
async-trait = "0.1.51"
tokio-stream = "0.1.7"
futures-util = "0.3.17"
# Logging and tracing
tracing = "0.1.27"
tracing = "0.1.28"
# Error management
thiserror = "1.0.29"
@@ -21,7 +21,7 @@ anyhow = "1.0.44"
# Web server
warp = "0.3.1"
hyper = { version = "0.14.12", features = ["full"] }
hyper = { version = "0.14.13", features = ["full"] }
# Template engine
tera = "1.12.1"
@@ -38,7 +38,7 @@ serde_urlencoded = "0.7.0"
# Argument & config parsing
figment = { version = "0.10.6", features = ["env", "yaml", "test"] }
schemars = { version = "0.8.3", features = ["url", "chrono"] }
schemars = { version = "0.8.5", features = ["url", "chrono"] }
# Password hashing
argon2 = { version = "0.3.1", features = ["password-hash"] }

View File

@@ -6,7 +6,7 @@ edition = "2018"
license = "Apache-2.0"
[dependencies]
http = "0.2.4"
http = "0.2.5"
serde = "1.0.130"
serde_json = "1.0.68"
language-tags = { version = "0.3.2", features = ["serde"] }