23 lines
576 B
TOML
23 lines
576 B
TOML
[package]
|
|
name = "butterfly-server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Butterfly Desktop Environment Server — remote display/audio streaming with HUD control"
|
|
|
|
[dependencies]
|
|
actix-web = "4"
|
|
actix-ws = "0.4"
|
|
actix-cors = "0.7"
|
|
actix-files = "0.6"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
futures = "0.3"
|
|
bytes = "1"
|
|
parking_lot = "0.12"
|
|
dashmap = "6"
|