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
2021-12-06 10:01:37 +01:00
parent 54a7e63913
commit c857ff90ec
6 changed files with 216 additions and 233 deletions

View File

@ -6,23 +6,23 @@ edition = "2018"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.13.0", features = ["full"] }
futures = "0.3.17"
anyhow = "1.0.45"
tokio = { version = "1.14.0", features = ["full"] }
futures = "0.3.18"
anyhow = "1.0.51"
clap = "3.0.0-beta.5"
dotenv = "0.15.0"
schemars = { version = "0.8.6", features = ["url", "chrono"] }
tower = { version = "0.4.10", features = ["full"] }
tower-http = { version = "0.1.1", features = ["full"] }
hyper = { version = "0.14.14", features = ["full"] }
schemars = { version = "0.8.8", features = ["url", "chrono"] }
tower = { version = "0.4.11", features = ["full"] }
tower-http = { version = "0.2.0", features = ["full"] }
hyper = { version = "0.14.15", features = ["full"] }
serde_yaml = "0.8.21"
warp = "0.3.1"
warp = "0.3.2"
url = "2.2.2"
argon2 = { version = "0.3.1", features = ["password-hash"] }
reqwest = { version = "0.11.6", features = ["rustls-tls"], default-features = false, optional = true }
reqwest = { version = "0.11.7", features = ["rustls-tls"], default-features = false, optional = true }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.3", features = ["env-filter"] }
tracing-opentelemetry = "0.16.0"
opentelemetry = { version = "0.16.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-http = "0.5.0"