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-05-26 16:11:17 +02:00
parent 9571614a56
commit 91e134f6b4
6 changed files with 220 additions and 158 deletions

View File

@ -17,7 +17,7 @@ http = "0.2.9"
http-body = "0.4.5"
mime = "0.3.17"
rand = "0.8.5"
sentry = { version = "0.31.2", default-features = false }
sentry = { version = "0.31.3", default-features = false }
serde = "1.0.163"
serde_with = "3.0.0"
serde_urlencoded = "0.7.1"

View File

@ -41,9 +41,9 @@ opentelemetry-zipkin = { version = "0.17.0", features = ["opentelemetry-http"],
opentelemetry-http = { version = "0.8.0", features = ["tokio", "hyper"], optional = true }
opentelemetry-prometheus = { version = "0.12.0", optional = true }
prometheus = { version = "0.13.3", optional = true }
sentry = { version = "0.31.2", default-features = false, features = ["backtrace", "contexts", "panic", "tower"] }
sentry-tracing = "0.31.2"
sentry-tower = { version = "0.31.2", features = ["http"] }
sentry = { version = "0.31.3", default-features = false, features = ["backtrace", "contexts", "panic", "tower"] }
sentry-tracing = "0.31.3"
sentry-tower = { version = "0.31.3", features = ["http"] }
mas-config = { path = "../config" }
mas-email = { path = "../email" }

View File

@ -12,12 +12,12 @@ thiserror = "1.0.40"
headers = "0.3.8"
aws-sdk-sesv2 = { version = "0.27.0", default-features = false }
aws-config = { version = "0.55.2", default-features = false }
aws-config = { version = "0.55.3", default-features = false }
aws-smithy-client = { version = "0.55.3", default-features = false, features = ["client-hyper"] }
aws-smithy-async = { version = "0.55.3", default-features = false, features = ["rt-tokio"] }
aws-smithy-http = { version = "0.55.3", default-features = false }
aws-smithy-http-tower = { version = "0.55.3", default-features = false }
aws-types = "0.55.2"
aws-types = "0.55.3"
mas-templates = { path = "../templates" }
mas-http = { path = "../http", features = ["aws-sdk", "client"] }

View File

@ -16,7 +16,7 @@ tracing = "0.1.37"
# Error management
thiserror = "1.0.40"
anyhow = "1.0.71"
sentry = { version = "0.31.2", default-features = false }
sentry = { version = "0.31.3", default-features = false }
# Web server
hyper = { version = "0.14.26", features = ["full"] }

View File

@ -7,7 +7,7 @@ license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.55.3", optional = true }
aws-types = { version = "0.55.2", optional = true }
aws-types = { version = "0.55.3", optional = true }
axum = { version = "0.6.18", optional = true }
bytes = "1.4.0"
futures-util = "0.3.28"