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-02-13 17:05:20 +01:00
parent 3b2b5a2ae3
commit eb8bda6bbb
20 changed files with 262 additions and 209 deletions

View File

@ -6,9 +6,9 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.54.1", optional = true }
aws-smithy-http = { version = "0.54.2", optional = true }
aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.4", optional = true }
axum = { version = "0.6.6", optional = true }
bytes = "1.4.0"
futures-util = "0.3.26"
headers = "0.3.8"
@ -23,7 +23,7 @@ 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.91"
serde_json = "1.0.93"
serde_urlencoded = "0.7.1"
thiserror = "1.0.38"
tokio = { version = "1.25.0", features = ["sync", "parking_lot"], optional = true }
@ -35,7 +35,7 @@ webpki = { version = "0.22.0", optional = true }
webpki-roots = { version = "0.22.6", optional = true }
[dev-dependencies]
anyhow = "1.0.68"
anyhow = "1.0.69"
serde = { version = "1.0.152", features = ["derive"] }
tokio = { version = "1.25.0", features = ["macros", "rt"] }
tower = { version = "0.4.13", features = ["util"] }