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-03-13 18:01:23 +01:00
parent c5e1e2ec62
commit c6f31d0102
31 changed files with 549 additions and 533 deletions

View File

@ -8,13 +8,13 @@ license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.54.4", optional = true }
aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.9", optional = true }
axum = { version = "0.6.11", optional = true }
bytes = "1.4.0"
futures-util = "0.3.26"
futures-util = "0.3.27"
headers = "0.3.8"
http = "0.2.9"
http-body = "0.4.5"
hyper = "0.14.24"
hyper = "0.14.25"
hyper-rustls = { version = "0.23.2", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.17.1"
opentelemetry = "0.18.0"
@ -22,11 +22,11 @@ opentelemetry-http = "0.7.0"
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.93"
serde = "1.0.155"
serde_json = "1.0.94"
serde_urlencoded = "0.7.1"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["sync", "parking_lot"], optional = true }
thiserror = "1.0.39"
tokio = { version = "1.26.0", features = ["sync", "parking_lot"], optional = true }
tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.4.0", features = ["cors"] }
tracing = "0.1.37"
@ -36,8 +36,8 @@ webpki-roots = { version = "0.22.6", optional = true }
[dev-dependencies]
anyhow = "1.0.69"
serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.25.0", features = ["macros", "rt"] }
serde = { version = "1.0.155", features = ["derive"] }
tokio = { version = "1.26.0", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }
[features]