-
Notifications
You must be signed in to change notification settings - Fork 7
/
Cargo.toml
39 lines (32 loc) · 1.13 KB
/
Cargo.toml
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
[package]
name = "tomotroid"
version = "0.1.0"
description = "Simple Pomodoro Timer made with Rust + Slint. Design shamelessly ripped from Pomotroid"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
open = "5.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
slint = { version = "1.7.2", default-features = false, features = [ "compat-1-2", "std", "accessibility", "backend-winit", "renderer-femtovg", "renderer-software", "serde"] }
i-slint-backend-winit = "=1.7.2"
hex_color = { version = "3.0.0", features = [ "serde" ] }
walkdir = "2.5"
etcetera = "0.8.0"
directories = "5.0.1"
single-instance = "0.3.3"
global-hotkey = "0.5"
notify-rust = "4.11.0"
rodio = "0.19"
[target.'cfg(windows)'.dependencies]
tray-item = "0.10"
[target.'cfg(unix)'.dependencies]
tray-item = { version = "0.10", features = [ "ksni" ] }
png = "0.17"
[build-dependencies]
slint-build = "1.7.2"
[target.'cfg(windows)'.build-dependencies]
windres = "0.2.2"
#https://github.com/tauri-apps/winrt-notification for notifications on Windows?