From 9a42133ba9ee8fb13de4f3b4fe9484c51c8a428d Mon Sep 17 00:00:00 2001 From: Matti Viljanen Date: Mon, 6 Nov 2023 00:45:34 +0200 Subject: [PATCH] Update awc and actix-http to 3.2.0 --- libsignal-service-actix/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libsignal-service-actix/Cargo.toml b/libsignal-service-actix/Cargo.toml index f78a3af57..7b0349706 100644 --- a/libsignal-service-actix/Cargo.toml +++ b/libsignal-service-actix/Cargo.toml @@ -11,8 +11,9 @@ rust-version = "1.70.0" # the Send requirement in libsignal-service needs to be lifted by enabling `unsend-futures`. libsignal-service = { path = "../libsignal-service", features = ["unsend-futures"] } -awc = { version = "3.0.0-beta.19", features = ["rustls"] } +awc = { version = "3.2.0", features = ["rustls-0_21"] } actix = "0.13" +actix-http = "3.2.0" actix-rt = "2.4" # mpart-async 0.6 requires Rust 2021, violating MSRV = 1.52 mpart-async = "0.5"