1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump dependencies

This commit is contained in:
Quentin Gliech
2022-02-17 15:50:10 +01:00
parent 035e2d7829
commit fa92d6498f
15 changed files with 61 additions and 62 deletions

View File

@ -6,16 +6,16 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.16.1", features = ["full"] }
futures = "0.3.19"
tokio = { version = "1.17.0", features = ["full"] }
futures = "0.3.21"
anyhow = { version = "1.0.53", features = ["backtrace"] }
clap = { version = "3.0.14", features = ["derive"] }
clap = { version = "3.1.0", features = ["derive"] }
dotenv = "0.15.0"
schemars = { version = "0.8.8", features = ["url", "chrono"] }
tower = { version = "0.4.11", features = ["full"] }
hyper = { version = "0.14.16", features = ["full"] }
tower = { version = "0.4.12", features = ["full"] }
hyper = { version = "0.14.17", features = ["full"] }
serde_yaml = "0.8.23"
serde_json = "1.0.78"
serde_json = "1.0.79"
warp = "0.3.2"
url = "2.2.2"
argon2 = { version = "0.3.3", features = ["password-hash"] }
@ -25,8 +25,8 @@ atty = "0.2.14"
tracing = "0.1.30"
tracing-appender = "0.2.0"
tracing-subscriber = { version = "0.3.7", features = ["env-filter"] }
tracing-opentelemetry = "0.17.0"
tracing-subscriber = { version = "0.3.8", features = ["env-filter"] }
tracing-opentelemetry = "0.17.1"
opentelemetry = { version = "0.17.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-semantic-conventions = "0.9.0"
opentelemetry-jaeger = { version = "0.16.0", features = ["rt-tokio", "reqwest_collector_client"], optional = true }