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

Bump Rust dependencies

This commit is contained in:
Quentin Gliech
2022-08-01 17:50:33 +02:00
parent ba6a382f2c
commit d4c718ef4b
18 changed files with 407 additions and 427 deletions

View File

@ -6,15 +6,15 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.19.2", features = ["full"] }
tokio = { version = "1.20.1", features = ["full"] }
futures = "0.3.21"
anyhow = "1.0.58"
clap = { version = "3.2.8", features = ["derive"] }
anyhow = "1.0.59"
clap = { version = "3.2.16", features = ["derive"] }
dotenv = "0.15.0"
schemars = { version = "0.8.10", features = ["url", "chrono"] }
tower = { version = "0.4.13", features = ["full"] }
hyper = { version = "0.14.19", features = ["full"] }
serde_yaml = "0.8.24"
hyper = { version = "0.14.20", features = ["full"] }
serde_yaml = "0.9.2"
serde_json = "1.0.82"
url = "2.2.2"
argon2 = { version = "0.4.1", features = ["password-hash"] }
@ -22,9 +22,9 @@ reqwest = { version = "0.11.11", features = ["rustls-tls"], default-features = f
watchman_client = "0.8.0"
atty = "0.2.14"
tracing = "0.1.35"
tracing = "0.1.36"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.14", features = ["env-filter"] }
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
tracing-opentelemetry = "0.17.4"
opentelemetry = { version = "0.17.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-semantic-conventions = "0.9.0"