Files
umutray/Cargo.toml
T
funman300 c4587b0729 fix: downgrade iced_fonts to 0.1 for iced 0.13 compatibility
iced_fonts 0.3 pulls in iced_widget 0.14 / iced_renderer 0.14 which
breaks release builds when used alongside iced 0.13. Pin to 0.1.x
which targets iced 0.12/0.13 and drop the unused iced_aw dependency.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-18 23:12:52 -07:00

48 lines
1.1 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"] }