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-10-25 17:40:54 -04:00
parent 004821f4f2
commit bca8b11e46
5 changed files with 48 additions and 71 deletions

View File

@@ -12,18 +12,18 @@ anyhow = "1.0.44"
clap = "3.0.0-beta.5"
dotenv = "0.15.0"
schemars = { version = "0.8.6", features = ["url", "chrono"] }
tower = { version = "0.4.9", features = ["full"] }
tower = { version = "0.4.10", features = ["full"] }
tower-http = { version = "0.1.1", features = ["full"] }
hyper = { version = "0.14.13", features = ["full"] }
hyper = { version = "0.14.14", features = ["full"] }
serde_yaml = "0.8.21"
warp = "0.3.1"
url = "2.2.2"
argon2 = { version = "0.3.1", features = ["password-hash"] }
reqwest = { version = "0.11.5", features = ["rustls-tls"], default-features = false, optional = true }
reqwest = { version = "0.11.6", features = ["rustls-tls"], default-features = false, optional = true }
tracing = "0.1.29"
tracing-subscriber = "0.2.25"
tracing-opentelemetry = "0.15.0"
tracing-subscriber = { version = "0.3.1", features = ["env-filter"] }
tracing-opentelemetry = "0.16.0"
opentelemetry = { version = "0.16.0", features = ["trace", "metrics", "rt-tokio"] }
opentelemetry-http = "0.5.0"
opentelemetry-semantic-conventions = "0.8.0"

View File

@@ -19,7 +19,7 @@ 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.10.0", features = ["hex", "chrono"] }
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
serde_json = "1.0.68"
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres"] }
@@ -28,11 +28,6 @@ rsa = "0.5.0"
k256 = "0.9.6"
pkcs8 = { version = "0.7.6", features = ["pem"] }
elliptic-curve = { version = "0.10.6", features = ["pem"] }
jwt-compact = { version = "0.5.0-beta.1", features = ["with_rsa", "k256"] }
indoc = "1.0.3"
[dependencies.jwt-compact]
# Waiting on the next release because of the bump of the `rsa` dependency
git = "https://github.com/slowli/jwt-compact.git"
rev = "7a6dee6824c1d4e7c7f81019c9a968e5c9e44923"
features = ["rsa", "k256"]

View File

@@ -22,14 +22,14 @@ anyhow = "1.0.44"
# Web server
warp = "0.3.1"
hyper = { version = "0.14.13", features = ["full"] }
hyper = { version = "0.14.14", features = ["full"] }
# Database access
sqlx = { version = "0.5.9", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline"] }
# Various structure (de)serialization
serde = { version = "1.0.130", features = ["derive"] }
serde_with = { version = "1.10.0", features = ["hex", "chrono"] }
serde_with = { version = "1.11.0", features = ["hex", "chrono"] }
serde_json = "1.0.68"
serde_urlencoded = "0.7.0"
@@ -45,6 +45,7 @@ elliptic-curve = { version = "0.10.6", features = ["pem"] }
chacha20poly1305 = { version = "0.9.0", features = ["std"] }
sha2 = "0.9.8"
crc = "2.0.0"
jwt-compact = { version = "0.5.0-beta.1", features = ["with_rsa", "k256"] }
# Various data types and utilities
data-encoding = "2.3.2"
@@ -54,7 +55,7 @@ itertools = "0.10.1"
mime = "0.3.16"
rand = "0.8.4"
bincode = "1.3.3"
headers = "0.3.4"
headers = "0.3.5"
cookie = "0.15.1"
once_cell = "1.8.0"
@@ -63,11 +64,5 @@ mas-config = { path = "../config" }
mas-data-model = { path = "../data-model" }
mas-templates = { path = "../templates" }
[dependencies.jwt-compact]
# Waiting on the next release because of the bump of the `rsa` dependency
git = "https://github.com/slowli/jwt-compact.git"
rev = "7a6dee6824c1d4e7c7f81019c9a968e5c9e44923"
features = ["rsa", "k256"]
[dev-dependencies]
indoc = "1.0.3"

View File

@@ -13,7 +13,7 @@ language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
parse-display = "0.5.3"
indoc = "1.0.3"
serde_with = { version = "1.10.0", features = ["chrono"] }
serde_with = { version = "1.11.0", features = ["chrono"] }
sqlx = { version = "0.5.9", default-features = false, optional = true }
chrono = "0.4.19"
sha2 = "0.9.8"