1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-09 04:22:45 +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"

View File

@@ -6,21 +6,21 @@ edition = "2018"
license = "Apache-2.0"
[dependencies]
tokio = { version = "1.13.0", features = [] }
tokio = { version = "1.14.0", features = [] }
tracing = { version = "0.1.29", features = ["log"] }
async-trait = "0.1.51"
thiserror = "1.0.30"
anyhow = "1.0.45"
anyhow = "1.0.51"
schemars = { version = "0.8.6", features = ["url", "chrono"] }
schemars = { version = "0.8.8", 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"] }
serde = { version = "1.0.130", features = ["derive"] }
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
serde_json = "1.0.68"
serde_json = "1.0.72"
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres"] }
rand = "0.8.4"

View File

@@ -7,10 +7,10 @@ license = "Apache-2.0"
[dependencies]
# Async runtime
tokio = { version = "1.13.0", features = ["full"] }
tokio = { version = "1.14.0", features = ["full"] }
async-trait = "0.1.51"
tokio-stream = "0.1.8"
futures-util = "0.3.17"
futures-util = "0.3.18"
# Logging and tracing
tracing = "0.1.29"
@@ -18,11 +18,11 @@ opentelemetry = "0.16.0"
# Error management
thiserror = "1.0.30"
anyhow = "1.0.45"
anyhow = "1.0.51"
# Web server
warp = "0.3.1"
hyper = { version = "0.14.14", features = ["full"] }
warp = "0.3.2"
hyper = { version = "0.14.15", features = ["full"] }
# Database access
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
@@ -30,7 +30,7 @@ sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres", "mig
# Various structure (de)serialization
serde = { version = "1.0.130", features = ["derive"] }
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
serde_json = "1.0.68"
serde_json = "1.0.72"
serde_urlencoded = "0.7.0"
# Password hashing

View File

@@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
http = "0.2.5"
serde = "1.0.130"
serde_json = "1.0.68"
serde_json = "1.0.72"
language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
parse-display = "0.5.3"

View File

@@ -7,17 +7,17 @@ license = "Apache-2.0"
[dependencies]
tracing = "0.1.29"
tokio = "1.13.0"
tokio = "1.14.0"
anyhow = "1.0.45"
anyhow = "1.0.51"
thiserror = "1.0.30"
tera = "1.15.0"
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
serde_json = "1.0.72"
url = "2.2.2"
warp = "0.3.1"
warp = "0.3.2"
oauth2-types = { path = "../oauth2-types" }
mas-data-model = { path = "../data-model" }