1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-09 04:22:45 +03:00

Bump Rust depdenencies

This commit is contained in:
Quentin Gliech
2023-04-18 19:40:53 +02:00
parent 186f0956f0
commit 4baa15bbd3
26 changed files with 950 additions and 694 deletions

View File

@@ -22,20 +22,20 @@ base64ct = { version = "1.6.0", features = ["std"] }
bytes = "1.4.0"
chrono = "0.4.24"
form_urlencoded = "1.1.0"
futures = "0.3.27"
futures = "0.3.28"
futures-signals = "0.3.32"
futures-util = "0.3.27"
futures-util = "0.3.28"
headers = "0.3.8"
http = "0.2.9"
once_cell = "1.17.1"
mime = "0.3.17"
rand = "0.8.5"
serde = { version = "1.0.158", features = ["derive"] }
serde_json = "1.0.94"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
serde_urlencoded = "0.7.1"
serde_with = "2.3.1"
serde_with = "2.3.2"
thiserror = "1.0.40"
tokio = { version = "1.26.0", features = ["rt", "macros", "rt-multi-thread"] }
tokio = { version = "1.27.0", features = ["rt", "macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["full"] }
tracing = "0.1.37"
url = { version = "2.3.1", features = ["serde"] }
@@ -48,14 +48,14 @@ oauth2-types = { path = "../oauth2-types" }
# Default http service
http-body = { version = "0.4.5", optional = true }
rustls = {version = "0.20.8", optional = true }
rustls = {version = "0.21.0", optional = true }
[dependencies.hyper-rustls]
version = "0.23.2"
version = "0.24.0"
features = ["http1", "http2", "rustls-native-certs"]
default-features = false
optional = true
[dependencies.hyper]
version = "0.14.25"
version = "0.14.26"
features = ["client", "http1", "http2", "stream", "runtime" ]
optional = true
[dependencies.tower-http]
@@ -68,4 +68,4 @@ assert_matches = "1.5.0"
bitflags = "2.1.0"
mas-keystore = { path = "../keystore" }
rand_chacha = "0.3.1"
wiremock = "0.5.17"
wiremock = "0.5.18"