6fe558ad00
Binary, crate, clap app name, ksni tray id, HTTP user-agent, systemd unit, XDG config dir (co.aleshym/umutray), README, and all log prefixes. Config path changes from ~/.config/battlenet-manager/ to ~/.config/umutray/. Existing users should `mv` the old directory if they've customised it; otherwise defaults get rewritten on next run. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
33 lines
672 B
TOML
33 lines
672 B
TOML
[package]
|
|
name = "umutray"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Battle.net launcher manager for Linux via umu/Proton-GE"
|
|
|
|
[[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"] }
|