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

Bump Rust dependencies

This commit is contained in:
Quentin Gliech
2023-11-24 10:29:53 +01:00
parent cc10270ede
commit 30247448d5
21 changed files with 461 additions and 423 deletions

View File

@ -10,15 +10,15 @@ repository.workspace = true
[dependencies]
axum = { version = "0.6.20", optional = true }
bytes = "1.5.0"
futures-util = "0.3.28"
futures-util = "0.3.29"
headers = "0.3.9"
http.workspace = true
http-body = "0.4.5"
hyper = "0.14.27"
hyper-rustls = { version = "0.24.1", features = ["http1", "http2"], default-features = false, optional = true }
hyper-rustls = { version = "0.24.2", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.18.0"
opentelemetry.workspace = true
rustls = { version = "0.21.8", optional = true }
rustls = { version = "0.21.9", optional = true }
rustls-native-certs = { version = "0.6.3", optional = true }
serde.workspace = true
serde_json.workspace = true
@ -29,7 +29,7 @@ tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.4.4", features = ["cors"] }
tracing.workspace = true
tracing-opentelemetry.workspace = true
webpki-roots = { version = "0.25.2", optional = true }
webpki-roots = { version = "0.25.3", optional = true }
mas-tower = { path = "../tower" }