-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (35 loc) · 1.05 KB
/
Cargo.toml
File metadata and controls
41 lines (35 loc) · 1.05 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
[package]
name = "beeper-automations"
version = "0.1.0"
edition = "2024"
[[bin]]
name = "auto-beeper-service"
path = "src/bin/service.rs"
[[bin]]
name = "auto-beeper-configurator"
path = "src/bin/configurator.rs"
[[bin]]
name = "auto-beeper-windows-service"
path = "src/bin/windows_service.rs"
[dependencies]
beeper-desktop-api = "0.1.3"
tokio = { version = "1.48.0", features = ["rt-multi-thread", "macros", "signal"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
ratatui = "0.29"
crossterm = "0.29"
serde = { version = "1.0", features = ["derive"] }
toml = "0.9.8"
dirs = "6.0"
anyhow = "1.0"
thiserror = "2.0.17"
uuid = { version = "1.19", features = ["v4"] }
notify = "6.1"
chrono = "0.4"
rodio = "0.19"
user-idle2 = { git = "https://github.com/ErdemGKSL/user-idle2-rs.git", features = ["evdev"] }
reqwest = { version = "0.12", features = ["blocking"] }
[target.'cfg(windows)'.dependencies]
windows = { version = "0.58", features = ["Win32", "Win32_UI_WindowsAndMessaging", "Win32_System_Console"] }
[features]
default = []