feat: add Proxmox VM GUI controller in Rust

This commit is contained in:
xiaji
2026-04-10 22:44:00 +08:00
parent a022e9d7ce
commit 7f6c8bff83
6 changed files with 791 additions and 0 deletions

24
Cargo.toml Normal file
View File

@@ -0,0 +1,24 @@
[package]
name = "proxmox-vm-gui"
version = "0.1.0"
edition = "2021"
[dependencies]
egui = "0.29"
eframe = "0.29"
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
dotenv = "0.15"
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
chrono = "0.4"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
strip = true
# MinGW target config
[target.x86_64-pc-windows-gnu]
linker = "x86_64-w64-mingw32-gcc"