-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (40 loc) · 917 Bytes
/
Copy pathCargo.toml
File metadata and controls
48 lines (40 loc) · 917 Bytes
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
[workspace]
resolver = "2"
members = [
"cardio_core",
"cardio_cli",
"cardio_tray",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Jawaad Mahmood"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
# Core dependencies
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.38", features = ["serde"] }
uuid = { version = "1.10", features = ["serde", "v4"] }
thiserror = "1.0"
toml = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# File operations
fs2 = "0.4"
csv = "1.3"
dirs = "5.0"
# CLI
clap = { version = "4.5", features = ["derive"] }
# GTK/Tray (Linux)
gtk4 = { version = "0.9", package = "gtk4" }
libadwaita = { version = "0.7", package = "libadwaita" }
gio = "0.20"
glib = "0.20"
open = "5"
ksni = "0.2"
# Testing
tempfile = "3.12"
# Performance
once_cell = "1.19"