25 lines
579 B
TOML
25 lines
579 B
TOML
[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
|
|
panic = "abort"
|
|
|
|
[target.x86_64-pc-windows-gnu]
|
|
linker = "x86_64-w64-mingw32-gcc"
|
|
rustflags = ["-C", "link-args=-static-libgcc"] |