From 4cf50c0b84f3a4432e4e743ae3e670fda4ed53e3 Mon Sep 17 00:00:00 2001 From: Martichou Date: Sun, 22 Sep 2024 21:44:55 +0200 Subject: [PATCH] fix: actix_web with correct rustls Signed-off-by: Martichou --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 8e96fc6..9420263 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ edition = "2021" [dependencies] sys_metrics = { git = "https://github.com/Martichou/sys_metrics" } askama = "0.12" -actix-web = { version = "4.3", features = ["rustls"] } +actix-web = { version = "4.3", features = ["rustls-0_23"] } actix-session = { version = "0.10", features = ["cookie-session"] } axum = { version = "0.7" } chrono = { version = "0.4", features = ["serde"] }