Files
umutray/Cargo.toml
T
funman300 c1893f9f64 refactor: rename service to autostart, fix fork bomb, add rfd file picker, use dirs crate, auto-start launcher, propagate overlays, ensure icon
- Rename service module to autostart (no systemd service is used)
- Fix fork bomb: replace subprocess spawning with thread::spawn
- Replace zenity/kdialog with rfd crate for XDG Portal file picker
- Use dirs crate instead of env::var("HOME")
- Auto-start launcher before game launch for online auth
- Propagate gamemode/mangohud env vars to launcher process
- Auto-install SVG icon on startup via ensure_icon()
- Add assets/umutray.svg
- Remove stale zenity/kdialog optdepends from PKGBUILD
- Update .gitignore for .claude/ and CLAUDE.md
2026-04-19 13:02:32 -07:00

55 lines
1.2 KiB
TOML

[package]
name = "umutray"
version = "0.1.0"
edition = "2021"
description = "Tray-based Wine launcher manager for Linux via umu/Proton-GE"
license = "MIT"
readme = "README.md"
repository = "https://git.aleshym.co/funman300/umutray"
keywords = ["wine", "proton", "umu", "tray", "launcher"]
categories = ["command-line-utilities", "games"]
[[bin]]
name = "umutray"
path = "src/main.rs"
[dependencies]
# CLI argument parsing
clap = { version = "4", features = ["derive"] }
# Config serialisation
serde = { version = "1", features = ["derive"] }
toml = "0.8"
# GitHub API responses
serde_json = "1"
# Error handling
anyhow = "1"
# XDG config / data paths
directories = "5"
# Home directory lookup
dirs = "5"
# Terminal colour output
owo-colors = "4"
# System tray via D-Bus StatusNotifierItem (KDE, GNOME+AppIndicator, Xfce, etc.)
ksni = "0.2"
# HTTP for GE-Proton GitHub releases API
reqwest = { version = "0.12", features = ["blocking", "json"] }
# GUI for the setup wizard
iced = { version = "0.13", features = ["tokio"] }
iced_fonts = { version = "0.1", features = ["bootstrap"] }
tokio = { version = "1.52.1", features = ["rt"] }
# PE exe version info (game name detection)
pelite = "0.10"
# Native file dialogs via XDG Desktop Portal
rfd = "0.15"