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
2023-02-13 17:05:20 +01:00
parent 3b2b5a2ae3
commit eb8bda6bbb
20 changed files with 262 additions and 209 deletions

View File

@ -7,8 +7,8 @@ license = "Apache-2.0"
[dependencies]
async-trait = "0.1.64"
axum = { version = "0.6.4", features = ["headers"] }
axum-extra = { version = "0.4.2", features = ["cookie-private"] }
axum = { version = "0.6.6", features = ["headers"] }
axum-extra = { version = "0.5.0", features = ["cookie-private"] }
chrono = "0.4.23"
data-encoding = "2.3.3"
futures-util = "0.3.26"
@ -17,11 +17,11 @@ http = "0.2.8"
http-body = "0.4.5"
mime = "0.3.16"
rand = "0.8.5"
sentry = { version = "0.29.2", default-features = false }
sentry = { version = "0.29.3", default-features = false }
serde = "1.0.152"
serde_with = "2.2.0"
serde_urlencoded = "0.7.1"
serde_json = "1.0.91"
serde_json = "1.0.93"
thiserror = "1.0.38"
tokio = "1.25.0"
tower = { version = "0.4.13", features = ["util"] }

View File

@ -6,9 +6,9 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
atty = "0.2.14"
axum = "0.6.4"
axum = "0.6.6"
camino = "1.1.2"
clap = { version = "4.1.4", features = ["derive"] }
dotenv = "0.15.0"
@ -18,7 +18,7 @@ listenfd = "1.0.0"
rand = "0.8.5"
rand_chacha = "0.3.1"
rustls = "0.20.8"
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_yaml = "0.9.17"
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
tokio = { version = "1.25.0", features = ["full"] }
@ -39,9 +39,9 @@ opentelemetry-zipkin = { version = "0.16.0", features = ["opentelemetry-http"],
opentelemetry-http = { version = "0.7.0", features = ["tokio", "hyper"], optional = true }
opentelemetry-prometheus = { version = "0.11.0", optional = true }
prometheus = { version = "0.13.3", optional = true }
sentry = { version = "0.29.2", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls", "tower"] }
sentry-tracing = "0.29.2"
sentry-tower = { version = "0.29.2", features = ["http"] }
sentry = { version = "0.29.3", default-features = false, features = ["backtrace", "contexts", "panic", "reqwest", "rustls", "tower"] }
sentry-tracing = "0.29.3"
sentry-tower = { version = "0.29.3", features = ["http"] }
mas-config = { path = "../config" }
mas-email = { path = "../email" }

View File

@ -11,7 +11,7 @@ tracing = { version = "0.1.37" }
async-trait = "0.1.64"
thiserror = "1.0.38"
anyhow = "1.0.68"
anyhow = "1.0.69"
camino = { version = "1.1.2", features = ["serde1"] }
chrono = { version = "0.4.23", features = ["serde"] }
@ -22,7 +22,7 @@ url = { version = "2.3.1", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_with = { version = "2.2.0", features = ["hex", "chrono"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
pem-rfc7468 = "0.6.0"
rustls-pemfile = "1.0.2"

View File

@ -12,7 +12,7 @@ thiserror = "1.0.38"
aws-sdk-sesv2 = { version = "0.24.0", default-features = false }
aws-config = { version = "0.54.1", default-features = false }
aws-smithy-client = { version = "0.54.1", default-features = false, features = ["client-hyper"] }
aws-smithy-client = { version = "0.54.2", default-features = false, features = ["client-hyper"] }
aws-smithy-async = { version = "0.54.2", default-features = false, features = ["rt-tokio"] }
mas-templates = { path = "../templates" }

View File

@ -6,8 +6,8 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
async-graphql = { version = "5.0.5", features = ["chrono", "url"] }
anyhow = "1.0.69"
async-graphql = { version = "5.0.6", features = ["chrono", "url"] }
chrono = "0.4.23"
serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.25.0", features = ["sync"] }

View File

@ -15,18 +15,18 @@ tracing = "0.1.37"
# Error management
thiserror = "1.0.38"
anyhow = "1.0.68"
sentry = { version = "0.29.2", default-features = false }
anyhow = "1.0.69"
sentry = { version = "0.29.3", default-features = false }
# Web server
hyper = { version = "0.14.24", features = ["full"] }
tower = "0.4.13"
tower-http = { version = "0.3.5", features = ["cors"] }
axum = "0.6.4"
axum-macros = "0.3.2"
axum-extra = { version = "0.4.2", features = ["cookie-private"] }
axum = "0.6.6"
axum-macros = "0.3.4"
axum-extra = { version = "0.5.0", features = ["cookie-private"] }
async-graphql = { version = "5.0.5", features = ["tracing", "apollo_tracing"] }
async-graphql = { version = "5.0.6", features = ["tracing", "apollo_tracing"] }
# Emails
lettre = { version = "0.10.2", default-features = false, features = ["builder"] }
@ -37,7 +37,7 @@ sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres"] }
# Various structure (de)serialization
serde = { version = "1.0.152", features = ["derive"] }
serde_with = { version = "2.2.0", features = ["hex", "chrono"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_urlencoded = "0.7.1"
# Password hashing

View File

@ -6,9 +6,9 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.54.1", optional = true }
aws-smithy-http = { version = "0.54.2", optional = true }
aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.4", optional = true }
axum = { version = "0.6.6", optional = true }
bytes = "1.4.0"
futures-util = "0.3.26"
headers = "0.3.8"
@ -23,7 +23,7 @@ opentelemetry-semantic-conventions = "0.10.0"
rustls = { version = "0.20.8", optional = true }
rustls-native-certs = { version = "0.6.2", optional = true }
serde = "1.0.152"
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_urlencoded = "0.7.1"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["sync", "parking_lot"], optional = true }
@ -35,7 +35,7 @@ webpki = { version = "0.22.0", optional = true }
webpki-roots = { version = "0.22.6", optional = true }
[dev-dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.25.0", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
async-trait = "0.1.64"
camino = "1.1.2"
convert_case = "0.6.0"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
serde = { version = "1.0.130", optional = true }
serde = { version = "1.0.152", optional = true }
schemars = { version = "0.8.11", default-features = false, optional = true }
[features]

View File

@ -21,7 +21,7 @@ rsa = "0.8.1"
schemars = "0.8.11"
sec1 = "0.3.0"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_with = { version = "2.2.0", features = ["base64"] }
sha2 = { version = "0.10.6", features = ["oid"] }
signature = "2.0.0"

View File

@ -6,10 +6,10 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
aead = { version = "0.5.1", features = ["std"] }
const-oid = { version = "0.9.1", features = ["std"] }
cookie = { version = "0.16.2", features = ["key-expansion", "private"] }
cookie = { version = "0.17.0", features = ["key-expansion", "private"] }
der = { version = "0.6.1", features = ["std"] }
ecdsa = { version = "0.15.1", features = ["std"] }
elliptic-curve = { version = "0.12.3", features = ["std", "pem", "sec1"] }

View File

@ -20,7 +20,7 @@ tracing = "0.1.37"
libc = "0.2.139"
[dev-dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
rustls-pemfile = "1.0.2"
tokio = { version = "1.25.0", features = ["net", "rt", "macros", "signal", "time", "rt-multi-thread"] }
tokio-test = "0.4.2"

View File

@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
http = "0.2.8"
serde = "1.0.152"
serde_json = "1.0.91"
serde_json = "1.0.93"
language-tags = { version = "0.3.2", features = ["serde"] }
url = { version = "2.3.1", features = ["serde"] }
parse-display = "0.8.0"

View File

@ -31,7 +31,7 @@ once_cell = "1.17.0"
mime = "0.3.16"
rand = "0.8.5"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_urlencoded = "0.7.1"
serde_with = "2.2.0"
thiserror = "1.0.38"

View File

@ -6,10 +6,10 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
opa-wasm = { git = "https://github.com/matrix-org/rust-opa-wasm.git" }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["io-util"] }
tracing = "0.1.37"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
axum = { version = "0.6.4", default-features = false }
axum = { version = "0.6.6", default-features = false }
serde = { version = "1.0.152", features = ["derive"] }
serde_urlencoded = "0.7.1"
url = "2.3.1"

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
thiserror = "1.0.38"
camino = { version = "1.1.2", features = ["serde1"] }
headers = "0.3.8"

View File

@ -10,7 +10,7 @@ async-trait = "0.1.64"
sqlx = { version = "0.6.2", features = ["runtime-tokio-rustls", "postgres", "migrate", "chrono", "offline", "json", "uuid"] }
chrono = { version = "0.4.23", features = ["serde"] }
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
thiserror = "1.0.38"
tracing = "0.1.37"
futures-util = "0.3.26"

View File

@ -9,12 +9,12 @@ license = "Apache-2.0"
tracing = "0.1.37"
tokio = { version = "1.25.0", features = ["macros", "rt"] }
anyhow = "1.0.68"
anyhow = "1.0.69"
thiserror = "1.0.38"
tera = "1.17.1"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
serde_json = "1.0.93"
serde_urlencoded = "0.7.1"
camino = "1.1.2"