-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
71 lines (56 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
71 lines (56 loc) · 1.46 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
[workspace]
resolver = "2"
members = [
"crates/vibepanel",
"crates/vibepanel-core",
]
[workspace.package]
version = "0.13.0"
edition = "2024"
license = "MIT"
authors = ["David"]
[workspace.dependencies]
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Time handling
chrono = "0.4"
# GTK4 and Wayland
gtk4 = { version = "0.10", features = ["v4_12"] }
pango = { version = "0.21", features = ["v1_56"] }
gtk4-layer-shell = "0.7"
gdk4-wayland = "0.10"
wayland-client = "0.31"
wayland-backend = "0.3"
wayland-protocols = { version = "0.32", features = ["client"] }
wayland-scanner = "0.31"
# File watching
notify = "6.1"
notify-debouncer-mini = "0.4"
# Hashing
sha2 = "0.10"
# Audio
libpulse-binding = "2.28"
# System
libc = "0.2"
udev = "0.9"
sysinfo = { version = "0.33", default-features = false, features = ["system", "network", "component"] }
nvml-wrapper = "0.12"
# Synchronization
parking_lot = "0.12"
# HTTP
minreq = { version = "2.14", default-features = false, features = ["https-rustls"] }
# Color extraction
material-colors = { version = "0.4.2" }
image = { version = "0.25", default-features = false, features = ["png", "jpeg", "webp"] }
# Internal crates
vibepanel-core = { path = "crates/vibepanel-core" }