-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
83 lines (72 loc) · 2.08 KB
/
Cargo.toml
File metadata and controls
83 lines (72 loc) · 2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[package]
name = "pomodorust"
version = "0.3.3"
edition = "2021"
authors = ["gerrux"]
description = "A modern, lightweight Pomodoro timer with Vercel-style dark UI"
license = "MIT"
repository = "https://github.com/gerrux/pomodorust"
default-run = "pomodorust"
[dependencies]
# GUI Framework
eframe = { version = "0.29", default-features = false, features = ["glow", "persistence"] }
egui = "0.29"
egui-phosphor = { version = "0.7", default-features = true }
egui-notify = "0.17"
catppuccin-egui = { version = "5.4", default-features = false, features = ["egui29"] }
egui_extras = { version = "0.29", default-features = false }
egui_dnd = "0.10"
# Data & Serialization
rusqlite = { version = "0.32", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Audio
rodio = { version = "0.19", default-features = false, features = ["mp3"] }
# System & Utils
sys-locale = "0.3"
directories = "5.0"
chrono = { version = "0.4", features = ["serde"] }
image = { version = "0.25", default-features = false, features = ["png"] }
tracing = "0.1"
tracing-subscriber = "0.3"
rfd = "0.15"
tray-icon = "0.19"
# Windows-specific
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = [
"Win32_UI_Shell",
"Win32_UI_WindowsAndMessaging",
"Win32_UI_Controls",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_Foundation",
"Win32_System_Com",
"Win32_System_Console",
"Win32_System_Threading",
"Win32_Graphics_Gdi",
"Win32_Graphics_Dwm",
"Win32_Storage_EnhancedStorage",
"Win32_UI_Shell_PropertiesSystem",
"Win32_System_Com_StructuredStorage",
] }
winreg = "0.52"
notify-rust = "4"
[target.'cfg(windows)'.build-dependencies]
winresource = "0.1"
image = { version = "0.25", default-features = false, features = ["png"] }
# Linux-specific
[target.'cfg(target_os = "linux")'.dependencies]
notify-rust = "4"
global-hotkey = "0.6"
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.release-fast]
inherits = "release"
opt-level = 3
lto = "thin"
[profile.dev]
opt-level = 1