Files
umutray/Cargo.toml
T
funman300 14eccf4ef0 Replace setup CLI stub with iced-based wizard
Lets the user paste an installer URL or local .exe path, downloads to
a temp file if needed, and runs the installer via umu-run with the
launcher's prefix, gameid, and proton path wired up. On completion,
checks for the expected exe and reports next steps.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-04-17 12:39:09 -07:00

41 lines
918 B
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"
# 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 = "0.13"