From b2f4f7ffa6ee5ef3d4a3cf41fa07db421c6c8f15 Mon Sep 17 00:00:00 2001 From: Butterfly Dev Date: Tue, 7 Apr 2026 03:14:04 +0000 Subject: [PATCH] =?UTF-8?q?server:=20fix=20Cargo.toml=20dependency=20versi?= =?UTF-8?q?ons=20=E2=80=94=20actix-ws=200.4,=20remove=20rustls/multipart?= =?UTF-8?q?=20features?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 3f067b9..09dbfb4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -5,11 +5,10 @@ edition = "2021" description = "Butterfly Desktop Environment Server — remote display/audio streaming with HUD control" [dependencies] -actix-web = { version = "4", features = ["rustls-0_23"] } -actix-ws = "0.7" +actix-web = "4" +actix-ws = "0.4" actix-cors = "0.7" actix-files = "0.6" -actix-multipart = "0.7" tokio = { version = "1", features = ["full"] } tokio-stream = "0.1" serde = { version = "1", features = ["derive"] }