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-16 14:50:20 +01:00
parent eb8bda6bbb
commit 823b27a714
7 changed files with 49 additions and 90 deletions

View File

@ -10,7 +10,7 @@ anyhow = "1.0.69"
atty = "0.2.14"
axum = "0.6.6"
camino = "1.1.2"
clap = { version = "4.1.4", features = ["derive"] }
clap = { version = "4.1.6", features = ["derive"] }
dotenv = "0.15.0"
hyper = { version = "0.14.24", features = ["full"] }
itertools = "0.10.5"

View File

@ -12,8 +12,8 @@ thiserror = "1.0.38"
aws-sdk-sesv2 = { version = "0.24.0", default-features = false }
aws-config = { version = "0.54.1", default-features = false }
aws-smithy-client = { version = "0.54.2", default-features = false, features = ["client-hyper"] }
aws-smithy-async = { version = "0.54.2", default-features = false, features = ["rt-tokio"] }
aws-smithy-client = { version = "0.54.3", default-features = false, features = ["client-hyper"] }
aws-smithy-async = { version = "0.54.3", default-features = false, features = ["rt-tokio"] }
mas-templates = { path = "../templates" }
mas-http = { path = "../http", features = ["aws-sdk", "client"] }

View File

@ -49,7 +49,7 @@ zeroize = "1.5.7"
# Various data types and utilities
camino = "1.1.2"
chrono = { version = "0.4.23", features = ["serde"] }
time = "0.3.17"
time = "0.3.18"
url = { version = "2.3.1", features = ["serde"] }
mime = "0.3.16"
rand = "0.8.5"

View File

@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.54.2", optional = true }
aws-smithy-http = { version = "0.54.3", optional = true }
aws-types = { version = "0.54.1", optional = true }
axum = { version = "0.6.6", optional = true }
bytes = "1.4.0"
@ -16,7 +16,7 @@ http = "0.2.8"
http-body = "0.4.5"
hyper = "0.14.24"
hyper-rustls = { version = "0.23.2", features = ["http1", "http2"], default-features = false, optional = true }
once_cell = "1.17.0"
once_cell = "1.17.1"
opentelemetry = "0.18.0"
opentelemetry-http = "0.7.0"
opentelemetry-semantic-conventions = "0.10.0"

View File

@ -10,7 +10,7 @@ anyhow = "1.0.69"
async-trait = "0.1.64"
camino = "1.1.2"
convert_case = "0.6.0"
csv = "1.1.6"
csv = "1.2.0"
futures-util = "0.3.26"
reqwest = { version = "0.11.14", features = ["blocking", "rustls-tls"], default-features = false }
serde = { version = "1.0.152", features = ["derive"] }

View File

@ -27,7 +27,7 @@ futures-signals = "0.3.31"
futures-util = "0.3.26"
headers = "0.3.8"
http = "0.2.8"
once_cell = "1.17.0"
once_cell = "1.17.1"
mime = "0.3.16"
rand = "0.8.5"
serde = { version = "1.0.152", features = ["derive"] }