Complete Slint UI mimicking Java Swing frmMain

This commit is contained in:
accusys
2026-03-29 15:47:09 +08:00
commit ee2423dd19
14 changed files with 1793 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
[package]
name = "raidguard_x_gui_client"
version = "0.1.0"
edition = "2021"
authors = ["Accusys"]
description = "RAIDGuard X GUI Client - Slint-based cross-platform GUI"
[lib]
name = "raidguard_x_gui_client"
crate-type = ["lib", "cdylib", "staticlib"]
path = "src/lib.rs"
[dependencies]
slint = "1.7"
tokio = { version = "1.42", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.10", features = ["v4"] }
thiserror = "2.0"
parking_lot = "0.12"
anyhow = "1.0"
chrono = "0.4"
[[bin]]
name = "raidguard-client"
path = "src/main.rs"
[build-dependencies]
slint-build = "1.7"