32 lines
722 B
TOML
32 lines
722 B
TOML
[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"
|