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-05-25 17:46:44 +02:00
parent d2d68e9a27
commit 1993f4cfca
28 changed files with 664 additions and 739 deletions

View File

@ -6,9 +6,9 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.55.1", optional = true }
aws-types = { version = "0.55.1", optional = true }
axum = { version = "0.6.17", optional = true }
aws-smithy-http = { version = "0.55.3", optional = true }
aws-types = { version = "0.55.2", optional = true }
axum = { version = "0.6.18", optional = true }
bytes = "1.4.0"
futures-util = "0.3.28"
headers = "0.3.8"
@ -18,13 +18,13 @@ hyper = "0.14.26"
hyper-rustls = { version = "0.24.0", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.17.1"
opentelemetry = "0.19.0"
rustls = { version = "0.21.0", optional = true }
rustls = { version = "0.21.1", optional = true }
rustls-native-certs = { version = "0.6.2", optional = true }
serde = "1.0.160"
serde = "1.0.163"
serde_json = "1.0.96"
serde_urlencoded = "0.7.1"
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["sync", "parking_lot"], optional = true }
tokio = { version = "1.28.1", features = ["sync", "parking_lot"], optional = true }
tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.4.0", features = ["cors"] }
tracing = "0.1.37"
@ -35,9 +35,9 @@ webpki-roots = { version = "0.23.0", optional = true }
mas-tower = { path = "../tower" }
[dev-dependencies]
anyhow = "1.0.70"
serde = { version = "1.0.160", features = ["derive"] }
tokio = { version = "1.28.0", features = ["macros", "rt"] }
anyhow = "1.0.71"
serde = { version = "1.0.163", features = ["derive"] }
tokio = { version = "1.28.1", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }
[features]