UI code reworked

This commit is contained in:
Ultradesu
2025-07-22 23:14:55 +03:00
parent 7cc446d227
commit cba8c58af7
4 changed files with 48 additions and 11 deletions

View File

@@ -27,13 +27,18 @@ trust-dns-resolver = "0.23"
futures = "0.3"
hostname = "0.3"
rust-embed = "8.0"
tray-icon = "0.19"
notify = "6.1"
notify-debouncer-mini = "0.4"
tray-icon = { version = "0.19", optional = true }
notify = { version = "6.1", optional = true }
notify-debouncer-mini = { version = "0.4", optional = true }
dirs = "5.0"
eframe = "0.29"
egui = "0.29"
winit = "0.30"
eframe = { version = "0.29", optional = true }
egui = { version = "0.29", optional = true }
winit = { version = "0.30", optional = true }
env_logger = "0.11"
urlencoding = "2.1"
[features]
default = ["gui"]
gui = ["tray-icon", "eframe", "egui", "winit", "notify", "notify-debouncer-mini"]
server = []