From bf8e9f79f81f00c693e989829639d17e507cab84 Mon Sep 17 00:00:00 2001 From: Butterfly Dev Date: Tue, 7 Apr 2026 03:06:45 +0000 Subject: [PATCH] =?UTF-8?q?server:=20Cargo.toml=20=E2=80=94=20full=20depen?= =?UTF-8?q?dency=20list=20for=20Actix=204,=20WebSocket,=20CORS,=20DashMap,?= =?UTF-8?q?=20etc.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/Cargo.toml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/server/Cargo.toml b/server/Cargo.toml index 393c8c2..3f067b9 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,25 @@ [package] name = "butterfly-server" version = "0.1.0" -edition = "2024" +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-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"] } +serde_json = "1" +uuid = { version = "1", features = ["v4", "serde"] } +chrono = { version = "0.4", features = ["serde"] } +rand = "0.8" +log = "0.4" +env_logger = "0.11" +futures = "0.3" +bytes = "1" +parking_lot = "0.12" +dashmap = "6"