1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-07-31 09:24:31 +03:00

Bump all Rust dependencies to latest version (#828)

This commit is contained in:
Quentin Gliech
2023-01-27 15:23:59 +01:00
committed by GitHub
parent 1e78f37353
commit 6bda071e3f
28 changed files with 435 additions and 375 deletions

View File

@ -6,9 +6,9 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.52.0", optional = true }
aws-types = { version = "0.52.0", optional = true }
axum = { version = "0.6.2", optional = true }
aws-smithy-http = { version = "0.54.1", optional = true }
aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.4", optional = true }
bytes = "1.3.0"
futures-util = "0.3.25"
headers = "0.3.8"
@ -20,13 +20,13 @@ once_cell = "1.17.0"
opentelemetry = "0.18.0"
opentelemetry-http = "0.7.0"
opentelemetry-semantic-conventions = "0.10.0"
rustls = { version = "0.20.7", optional = true }
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_urlencoded = "0.7.1"
thiserror = "1.0.38"
tokio = { version = "1.24.1", features = ["sync", "parking_lot"], optional = true }
tokio = { version = "1.24.2", features = ["sync", "parking_lot"], optional = true }
tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.3.5", features = ["cors"] }
tracing = "0.1.37"
@ -37,7 +37,7 @@ webpki-roots = { version = "0.22.6", optional = true }
[dev-dependencies]
anyhow = "1.0.68"
serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.24.1", features = ["macros", "rt"] }
tokio = { version = "1.24.2", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }
[features]